diff --git a/README.md b/README.md index 3532c17a5..a38c7e358 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,6 @@ The Sia web libraries provide developers with convenient TypeScript SDKs for usi - [@siafoundation/react-walletd](libs/react-walletd) - React hooks for interacting with `walletd`. - [@siafoundation/react-sia-central](libs/react-sia-central) - React hooks for interacting with the Sia Central API. - [@siafoundation/sia-central](libs/sia-central) - Methods and types for interacting with the Sia Central API. -- [@siafoundation/sia-js](libs/sia-js) - Core Sia types and library methods for v1 `siad`. -- [@siafoundation/sia-nodejs](libs/sia-nodejs) - Sia NodeJS client for controlling a v1 `siad`. - [@siafoundation/design-system](libs/design-system) - React-based design system used across Sia apps and websites. - [@siafoundation/data-sources](libs/data-sources) - Data sources used for stats on the website. - [@siafoundation/fonts](libs/fonts) - Next font configuration for use across apps. diff --git a/apps/explorer/app/address/[id]/opengraph-image.tsx b/apps/explorer/app/address/[id]/opengraph-image.tsx index 658e93be2..f2a0983b6 100644 --- a/apps/explorer/app/address/[id]/opengraph-image.tsx +++ b/apps/explorer/app/address/[id]/opengraph-image.tsx @@ -1,5 +1,5 @@ import { getSiaCentralAddress } from '@siafoundation/sia-central' -import { humanSiacoin, humanSiafund } from '@siafoundation/sia-js' +import { humanSiacoin, humanSiafund } from '@siafoundation/units' import { getOGImage } from '../../../components/OGImageEntity' import { siaCentralApi } from '../../../config' import { truncate } from '@siafoundation/design-system' diff --git a/apps/explorer/app/block/[id]/opengraph-image.tsx b/apps/explorer/app/block/[id]/opengraph-image.tsx index 6ab4a7a75..a229cdfe3 100644 --- a/apps/explorer/app/block/[id]/opengraph-image.tsx +++ b/apps/explorer/app/block/[id]/opengraph-image.tsx @@ -1,5 +1,5 @@ import { getSiaCentralBlock } from '@siafoundation/sia-central' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { getOGImage } from '../../../components/OGImageEntity' import { siaCentralApi } from '../../../config' import { truncate } from '@siafoundation/design-system' diff --git a/apps/explorer/app/contract/[id]/opengraph-image.tsx b/apps/explorer/app/contract/[id]/opengraph-image.tsx index c77cc03ac..49d82899a 100644 --- a/apps/explorer/app/contract/[id]/opengraph-image.tsx +++ b/apps/explorer/app/contract/[id]/opengraph-image.tsx @@ -2,7 +2,7 @@ import { getSiaCentralContract, getSiaCentralExchangeRates, } from '@siafoundation/sia-central' -import { humanBytes, humanDate } from '@siafoundation/sia-js' +import { humanBytes, humanDate } from '@siafoundation/units' import { getOGImage } from '../../../components/OGImageEntity' import { siaCentralApi } from '../../../config' import { truncate } from '@siafoundation/design-system' diff --git a/apps/explorer/app/host/[id]/opengraph-image.tsx b/apps/explorer/app/host/[id]/opengraph-image.tsx index aa6fe199b..a56f92313 100644 --- a/apps/explorer/app/host/[id]/opengraph-image.tsx +++ b/apps/explorer/app/host/[id]/opengraph-image.tsx @@ -10,8 +10,8 @@ import { getStorageCost, getUploadCost, getUploadSpeed, + humanBytes, } from '@siafoundation/units' -import { humanBytes } from '@siafoundation/sia-js' import { truncate } from '@siafoundation/design-system' import { CurrencyOption, currencyOptions } from '@siafoundation/react-core' diff --git a/apps/explorer/app/opengraph-image.tsx b/apps/explorer/app/opengraph-image.tsx index 631c24ba6..7bebb1d87 100644 --- a/apps/explorer/app/opengraph-image.tsx +++ b/apps/explorer/app/opengraph-image.tsx @@ -4,7 +4,7 @@ import { } from '@siafoundation/sia-central' import { getOGImage } from '../components/OGImage' import { network, siaCentralApi } from '../config' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { PreviewValue } from '../components/OGImage/Preview' export const revalidate = 0 diff --git a/apps/explorer/app/page.tsx b/apps/explorer/app/page.tsx index b05906def..f4e368c9e 100644 --- a/apps/explorer/app/page.tsx +++ b/apps/explorer/app/page.tsx @@ -8,7 +8,7 @@ import { getSiaCentralHostsNetworkMetrics, } from '@siafoundation/sia-central' import { buildMetadata } from '../lib/utils' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { getLastFewBlocks } from '../lib/blocks' export function generateMetadata(): Metadata { diff --git a/apps/explorer/app/tx/[id]/opengraph-image.tsx b/apps/explorer/app/tx/[id]/opengraph-image.tsx index 8f5a18fbe..6683bc3a6 100644 --- a/apps/explorer/app/tx/[id]/opengraph-image.tsx +++ b/apps/explorer/app/tx/[id]/opengraph-image.tsx @@ -1,5 +1,5 @@ import { getSiaCentralTransaction } from '@siafoundation/sia-central' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { getOGImage } from '../../../components/OGImageEntity' import { siaCentralApi } from '../../../config' import { truncate } from '@siafoundation/design-system' diff --git a/apps/explorer/components/Address/index.tsx b/apps/explorer/components/Address/index.tsx index fbc552b16..12e40fbe0 100644 --- a/apps/explorer/components/Address/index.tsx +++ b/apps/explorer/components/Address/index.tsx @@ -10,7 +10,7 @@ import { EntityList, EntityListItemProps, } from '@siafoundation/design-system' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' import { ExplorerDatum, DatumProps } from '../ExplorerDatum' import { useMemo, useState } from 'react' import { routes } from '../../config/routes' diff --git a/apps/explorer/components/Block/index.tsx b/apps/explorer/components/Block/index.tsx index c60a83041..a171427cb 100644 --- a/apps/explorer/components/Block/index.tsx +++ b/apps/explorer/components/Block/index.tsx @@ -1,5 +1,5 @@ import { Badge, Tooltip, EntityList } from '@siafoundation/design-system' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' import { ExplorerDatum, DatumProps } from '../ExplorerDatum' import { useMemo } from 'react' import { routes } from '../../config/routes' diff --git a/apps/explorer/components/Contract/index.tsx b/apps/explorer/components/Contract/index.tsx index 82bc4773a..846ca20fa 100644 --- a/apps/explorer/components/Contract/index.tsx +++ b/apps/explorer/components/Contract/index.tsx @@ -6,7 +6,7 @@ import { SiaCentralContract, SiaCentralExchangeRates, } from '@siafoundation/sia-central' -import { humanBytes, humanDate, humanSiacoin } from '@siafoundation/sia-js' +import { humanBytes, humanDate, humanSiacoin } from '@siafoundation/units' import { EntityList, EntityListItemProps } from '@siafoundation/design-system' import { DatumProps, ExplorerDatum } from '../ExplorerDatum' import { ContentLayout } from '../ContentLayout' diff --git a/apps/explorer/components/Faucet/FaucetFundForm.tsx b/apps/explorer/components/Faucet/FaucetFundForm.tsx index b4116359f..8cb4c3907 100644 --- a/apps/explorer/components/Faucet/FaucetFundForm.tsx +++ b/apps/explorer/components/Faucet/FaucetFundForm.tsx @@ -4,7 +4,7 @@ import { Paragraph, triggerToast, } from '@siafoundation/design-system' -import { toHastings } from '@siafoundation/sia-js' +import { toHastings } from '@siafoundation/units' import BigNumber from 'bignumber.js' import { useFormik } from 'formik' import * as Yup from 'yup' diff --git a/apps/explorer/components/Home/index.tsx b/apps/explorer/components/Home/index.tsx index 08ea01465..6d6b9bc1f 100644 --- a/apps/explorer/components/Home/index.tsx +++ b/apps/explorer/components/Home/index.tsx @@ -6,7 +6,6 @@ import { Tooltip, EntityList, } from '@siafoundation/design-system' -import { humanBytes, humanNumber } from '@siafoundation/sia-js' import { useMemo } from 'react' import { routes } from '../../config/routes' import { ContentLayout } from '../ContentLayout' @@ -19,6 +18,8 @@ import { } from '@siafoundation/sia-central' import { hashToAvatar } from '../../lib/avatar' import { + humanBytes, + humanNumber, getDownloadCost, getStorageCost, getUploadCost, diff --git a/apps/explorer/components/Host/HostInfo.tsx b/apps/explorer/components/Host/HostInfo.tsx index d5987d94f..4c8f7b519 100644 --- a/apps/explorer/components/Host/HostInfo.tsx +++ b/apps/explorer/components/Host/HostInfo.tsx @@ -12,7 +12,7 @@ import { WarningFilled16, } from '@siafoundation/react-icons' import { SiaCentralHost } from '@siafoundation/sia-central' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { formatDistance } from 'date-fns' type Props = { diff --git a/apps/explorer/components/Host/HostSettings.tsx b/apps/explorer/components/Host/HostSettings.tsx index 64a12ef60..d5d7bf80c 100644 --- a/apps/explorer/components/Host/HostSettings.tsx +++ b/apps/explorer/components/Host/HostSettings.tsx @@ -6,15 +6,14 @@ import { SiaCentralHost, } from '@siafoundation/sia-central' import { DatumProps, ExplorerDatum } from '../ExplorerDatum' +import { Panel, toFixedOrPrecision } from '@siafoundation/design-system' +import BigNumber from 'bignumber.js' import { - Panel, blocksToDays, blocksToMonths, - toFixedOrPrecision, -} from '@siafoundation/design-system' -import BigNumber from 'bignumber.js' -import { humanBytes, humanSiacoin, toSiacoins } from '@siafoundation/sia-js' -import { + humanBytes, + humanSiacoin, + toSiacoins, getDownloadCost, getStorageCost, getUploadCost, diff --git a/apps/explorer/components/Transaction/TransactionHeader.tsx b/apps/explorer/components/Transaction/TransactionHeader.tsx index 533cf7299..c2ac374fd 100644 --- a/apps/explorer/components/Transaction/TransactionHeader.tsx +++ b/apps/explorer/components/Transaction/TransactionHeader.tsx @@ -1,6 +1,6 @@ import { Badge, Text, Tooltip } from '@siafoundation/design-system' import { SiaCentralTransaction } from '@siafoundation/sia-central' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { routes } from '../../config/routes' import { EntityHeading } from '../EntityHeading' diff --git a/apps/explorer/lib/currency.ts b/apps/explorer/lib/currency.ts index e8a4ea11a..d3f66369c 100644 --- a/apps/explorer/lib/currency.ts +++ b/apps/explorer/lib/currency.ts @@ -1,6 +1,6 @@ import { toFixedOrPrecision } from '@siafoundation/design-system' import { CurrencyOption } from '@siafoundation/react-core' -import { humanSiacoin } from '@siafoundation/sia-js'; +import { humanSiacoin } from '@siafoundation/units' import BigNumber from 'bignumber.js' const digits = 2 diff --git a/apps/hostd/components/Config/AnnounceButton.tsx b/apps/hostd/components/Config/AnnounceButton.tsx index 7a3e90014..f967db1ae 100644 --- a/apps/hostd/components/Config/AnnounceButton.tsx +++ b/apps/hostd/components/Config/AnnounceButton.tsx @@ -7,7 +7,7 @@ import { import { Bullhorn16 } from '@siafoundation/react-icons' import { useDialog } from '../../contexts/dialog' import { useSettingsAnnounce, useTxPoolFee } from '@siafoundation/react-hostd' -import { humanSiacoin } from '@siafoundation/sia-js' +import { humanSiacoin } from '@siafoundation/units' import { useCallback } from 'react' import BigNumber from 'bignumber.js' diff --git a/apps/hostd/components/Home/HomeBandwidth.tsx b/apps/hostd/components/Home/HomeBandwidth.tsx index c3340f7f7..97c3a7358 100644 --- a/apps/hostd/components/Home/HomeBandwidth.tsx +++ b/apps/hostd/components/Home/HomeBandwidth.tsx @@ -5,7 +5,7 @@ import { DatumCardConfigurable, DatumScrollArea, } from '@siafoundation/design-system' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { useMetrics } from '../../contexts/metrics' export function HomeBandwidth() { diff --git a/apps/hostd/components/Home/HomeOperations.tsx b/apps/hostd/components/Home/HomeOperations.tsx index f15e566e2..10d8a657a 100644 --- a/apps/hostd/components/Home/HomeOperations.tsx +++ b/apps/hostd/components/Home/HomeOperations.tsx @@ -5,7 +5,7 @@ import { DatumCardConfigurable, DatumScrollArea, } from '@siafoundation/design-system' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' import { useMetrics } from '../../contexts/metrics' export function HomeOperations() { diff --git a/apps/hostd/components/Home/HomeStorage.tsx b/apps/hostd/components/Home/HomeStorage.tsx index 4d662c994..9da9edad5 100644 --- a/apps/hostd/components/Home/HomeStorage.tsx +++ b/apps/hostd/components/Home/HomeStorage.tsx @@ -5,7 +5,7 @@ import { DatumCardConfigurable, DatumScrollArea, } from '@siafoundation/design-system' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { useMetrics } from '../../contexts/metrics' export function HomeStorage() { diff --git a/apps/hostd/components/Home/index.tsx b/apps/hostd/components/Home/index.tsx index b0bb41ecf..7dc3bb98a 100644 --- a/apps/hostd/components/Home/index.tsx +++ b/apps/hostd/components/Home/index.tsx @@ -19,7 +19,7 @@ import { useDialog } from '../../contexts/dialog' import { DataTimeSpan, dataTimeSpanOptions } from '../../contexts/metrics/types' import { HomeOperations } from './HomeOperations' import { HomeBandwidth } from './HomeBandwidth' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { HomeCollateral } from './HomeCollateral' export function Home() { diff --git a/apps/hostd/components/Node/Logs.tsx b/apps/hostd/components/Node/Logs.tsx index 228c3d2b5..a8e54d58c 100644 --- a/apps/hostd/components/Node/Logs.tsx +++ b/apps/hostd/components/Node/Logs.tsx @@ -7,7 +7,7 @@ import { useDatasetEmptyState, } from '@siafoundation/design-system' import { useLogsSearch } from '@siafoundation/react-hostd' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { cx } from 'class-variance-authority' import { times } from 'lodash' diff --git a/apps/hostd/components/OnboardingBar.tsx b/apps/hostd/components/OnboardingBar.tsx index 1a6a9a650..ca712bca8 100644 --- a/apps/hostd/components/OnboardingBar.tsx +++ b/apps/hostd/components/OnboardingBar.tsx @@ -19,7 +19,7 @@ import { routes } from '../config/routes' import { useDialog } from '../contexts/dialog' import { useSettings, useWallet } from '@siafoundation/react-hostd' import BigNumber from 'bignumber.js' -import { toHastings } from '@siafoundation/sia-js' +import { toHastings } from '@siafoundation/units' import { useAppSettings } from '@siafoundation/react-core' import { useVolumes } from '../contexts/volumes' import useLocalStorageState from 'use-local-storage-state' diff --git a/apps/hostd/components/Volumes/index.tsx b/apps/hostd/components/Volumes/index.tsx index 33364f5a4..72710f4c6 100644 --- a/apps/hostd/components/Volumes/index.tsx +++ b/apps/hostd/components/Volumes/index.tsx @@ -1,6 +1,6 @@ import { Button, Table, Text, Separator } from '@siafoundation/design-system' import { Add20 } from '@siafoundation/react-icons' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { HostdAuthedLayout } from '../HostdAuthedLayout' import { useDialog } from '../../contexts/dialog' import { HostdSidenav } from '../HostdSidenav' diff --git a/apps/hostd/contexts/config/fields.tsx b/apps/hostd/contexts/config/fields.tsx index 6de237a36..8b7ab9784 100644 --- a/apps/hostd/contexts/config/fields.tsx +++ b/apps/hostd/contexts/config/fields.tsx @@ -1,4 +1,5 @@ -import { blocksToMonths, ConfigFields } from '@siafoundation/design-system' +import { blocksToMonths } from '@siafoundation/units' +import { ConfigFields } from '@siafoundation/design-system' import BigNumber from 'bignumber.js' import { dnsProviderOptions, initialValues, scDecimalPlaces } from './types' import { SiaCentralExchangeRates } from '@siafoundation/sia-central' diff --git a/apps/hostd/contexts/config/transform.ts b/apps/hostd/contexts/config/transform.ts index 45df7932e..8a90a6a6f 100644 --- a/apps/hostd/contexts/config/transform.ts +++ b/apps/hostd/contexts/config/transform.ts @@ -1,8 +1,3 @@ -import { - bytesToMB, - MBToBytes, - monthsToBlocks, -} from '@siafoundation/design-system' import { DNSAWSOptions, DNSCloudflareOptions, @@ -10,7 +5,13 @@ import { DNSNoIPOptions, HostSettings, } from '@siafoundation/react-hostd' -import { toHastings, toSiacoins } from '@siafoundation/sia-js' +import { + bytesToMB, + MBToBytes, + monthsToBlocks, + toHastings, + toSiacoins, +} from '@siafoundation/units' import { humanBaseRpcPrice, humanEgressPrice, diff --git a/apps/hostd/contexts/contracts/columns.tsx b/apps/hostd/contexts/contracts/columns.tsx index 94fe71bfa..c80792a33 100644 --- a/apps/hostd/contexts/contracts/columns.tsx +++ b/apps/hostd/contexts/contracts/columns.tsx @@ -7,7 +7,6 @@ import { Badge, ContractTimeline, ValueNum, - blockHeightToTime, ValueScFiat, } from '@siafoundation/design-system' import { @@ -16,7 +15,7 @@ import { Money16, } from '@siafoundation/react-icons' import { ContractStatus } from '@siafoundation/react-hostd' -import { humanBytes, humanDate } from '@siafoundation/sia-js' +import { blockHeightToTime, humanBytes, humanDate } from '@siafoundation/units' import { ContractContextMenu } from '../../components/Contracts/ContractContextMenu' import { ContractData, TableColumnId } from './types' diff --git a/apps/hostd/contexts/metrics/index.tsx b/apps/hostd/contexts/metrics/index.tsx index 2db42ee26..a15af9013 100644 --- a/apps/hostd/contexts/metrics/index.tsx +++ b/apps/hostd/contexts/metrics/index.tsx @@ -5,11 +5,15 @@ import { formatChartData, getDataIntervalLabelFormatter, getTimeRange, - MiBToBytes, minutesInMilliseconds, ValueScFiat, } from '@siafoundation/design-system' -import { humanBytes, humanNumber, humanSiacoin } from '@siafoundation/sia-js' +import { + MiBToBytes, + humanBytes, + humanNumber, + humanSiacoin, +} from '@siafoundation/units' import { useCallback, useMemo } from 'react' import { chartConfigs } from '../../config/charts' import { useMetricsPeriod } from '@siafoundation/react-hostd' diff --git a/apps/hostd/contexts/volumes/columns.tsx b/apps/hostd/contexts/volumes/columns.tsx index 731d65d09..64e4d4b0f 100644 --- a/apps/hostd/contexts/volumes/columns.tsx +++ b/apps/hostd/contexts/volumes/columns.tsx @@ -12,7 +12,7 @@ import { WarningSquareFilled16, InProgress16, } from '@siafoundation/react-icons' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { VolumeContextMenu } from '../../components/Volumes/VolumeContextMenu' import { VolumeData, TableColumnId } from './types' diff --git a/apps/hostd/contexts/volumes/dataset.ts b/apps/hostd/contexts/volumes/dataset.ts index e17498420..47c9d0033 100644 --- a/apps/hostd/contexts/volumes/dataset.ts +++ b/apps/hostd/contexts/volumes/dataset.ts @@ -2,7 +2,7 @@ import { useMemo } from 'react' import { useVolumes, VolumeMeta } from '@siafoundation/react-hostd' import { VolumeData } from './types' import BigNumber from 'bignumber.js' -import { MiBToBytes } from '@siafoundation/design-system' +import { MiBToBytes } from '@siafoundation/units' export function useDataset({ response, diff --git a/apps/hostd/dialogs/AlertsDialog.tsx b/apps/hostd/dialogs/AlertsDialog.tsx index 6304ab94d..396c1ca98 100644 --- a/apps/hostd/dialogs/AlertsDialog.tsx +++ b/apps/hostd/dialogs/AlertsDialog.tsx @@ -10,7 +10,7 @@ import { useAlerts, useAlertsDismiss, } from '@siafoundation/react-hostd' -import { humanTime } from '@siafoundation/sia-js' +import { humanTime } from '@siafoundation/units' import { useCallback } from 'react' type Props = { diff --git a/apps/hostd/dialogs/VolumeCreateDialog.tsx b/apps/hostd/dialogs/VolumeCreateDialog.tsx index db55ae2eb..d9b4818fd 100644 --- a/apps/hostd/dialogs/VolumeCreateDialog.tsx +++ b/apps/hostd/dialogs/VolumeCreateDialog.tsx @@ -1,8 +1,6 @@ import { Paragraph, Dialog, - bytesToGB, - GBToBytes, GBToSectors, triggerErrorToast, triggerSuccessToast, @@ -13,7 +11,7 @@ import { useOnInvalid, } from '@siafoundation/design-system' import { useSystemDirectory, useVolumeCreate } from '@siafoundation/react-hostd' -import { humanBytes } from '@siafoundation/sia-js' +import { bytesToGB, GBToBytes, humanBytes } from '@siafoundation/units' import BigNumber from 'bignumber.js' import { useCallback, useEffect, useMemo } from 'react' import { useForm } from 'react-hook-form' diff --git a/apps/hostd/dialogs/VolumeDeleteDialog.tsx b/apps/hostd/dialogs/VolumeDeleteDialog.tsx index 38d05e35d..bc8ae4fe7 100644 --- a/apps/hostd/dialogs/VolumeDeleteDialog.tsx +++ b/apps/hostd/dialogs/VolumeDeleteDialog.tsx @@ -14,7 +14,7 @@ import { FieldText, } from '@siafoundation/design-system' import { useVolume, useVolumeDelete } from '@siafoundation/react-hostd' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { useCallback, useMemo } from 'react' import { useForm } from 'react-hook-form' import { useDialog } from '../contexts/dialog' diff --git a/apps/hostd/dialogs/VolumeResizeDialog.tsx b/apps/hostd/dialogs/VolumeResizeDialog.tsx index 9fd1a0512..e663f667f 100644 --- a/apps/hostd/dialogs/VolumeResizeDialog.tsx +++ b/apps/hostd/dialogs/VolumeResizeDialog.tsx @@ -3,8 +3,6 @@ import { Text, Dialog, Code, - bytesToGB, - GBToBytes, sectorsToGB, Label, GBToSectors, @@ -20,7 +18,7 @@ import { useVolume, useVolumeResize, } from '@siafoundation/react-hostd' -import { humanBytes } from '@siafoundation/sia-js' +import { bytesToGB, GBToBytes, humanBytes } from '@siafoundation/units' import BigNumber from 'bignumber.js' import { useCallback, useEffect, useMemo } from 'react' import { useForm } from 'react-hook-form' diff --git a/apps/hostd/dialogs/VolumeSizeDiff.tsx b/apps/hostd/dialogs/VolumeSizeDiff.tsx index 5fb011105..387b4579f 100644 --- a/apps/hostd/dialogs/VolumeSizeDiff.tsx +++ b/apps/hostd/dialogs/VolumeSizeDiff.tsx @@ -1,5 +1,5 @@ -import { GBToBytes, Text } from '@siafoundation/design-system' -import { humanBytes } from '@siafoundation/sia-js' +import { Text } from '@siafoundation/design-system' +import { GBToBytes, humanBytes } from '@siafoundation/units' import { cx } from 'class-variance-authority' type Props = { diff --git a/apps/hostd/hooks/useHostOSPathSeparator.ts b/apps/hostd/hooks/useHostOSPathSeparator.ts index a1f0465da..b38fa26ab 100644 --- a/apps/hostd/hooks/useHostOSPathSeparator.ts +++ b/apps/hostd/hooks/useHostOSPathSeparator.ts @@ -9,5 +9,5 @@ export function useHostOSPathSeparator() { }, }, }) - return state.data?.OS === 'windows' ? '\\' : '/' + return state.data?.os === 'windows' ? '\\' : '/' } diff --git a/apps/hostd/lib/humanUnits.ts b/apps/hostd/lib/humanUnits.ts index 7b1f4cd69..e48c5a97d 100644 --- a/apps/hostd/lib/humanUnits.ts +++ b/apps/hostd/lib/humanUnits.ts @@ -1,4 +1,4 @@ -import { monthsToBlocks, TBToBytes } from '@siafoundation/design-system' +import { monthsToBlocks, TBToBytes } from '@siafoundation/units' import BigNumber from 'bignumber.js' export const humanStoragePriceSuffix = '/TB/month' diff --git a/apps/renterd/components/Config/ConfigStats.tsx b/apps/renterd/components/Config/ConfigStats.tsx index 4b1f04445..b03bf07b3 100644 --- a/apps/renterd/components/Config/ConfigStats.tsx +++ b/apps/renterd/components/Config/ConfigStats.tsx @@ -1,12 +1,11 @@ import { Text, - TBToBytes, ValueSc, ValueNum, useSiacoinFiat, ScrollArea, } from '@siafoundation/design-system' -import { humanBytes, toHastings } from '@siafoundation/sia-js' +import { TBToBytes, humanBytes, toHastings } from '@siafoundation/units' import { useConfig } from '../../contexts/config' import { useApp } from '../../contexts/app' diff --git a/apps/renterd/components/Files/FilesStatsMenu/FilesStatsMenuSize.tsx b/apps/renterd/components/Files/FilesStatsMenu/FilesStatsMenuSize.tsx index c1e5d00c5..32b303ccd 100644 --- a/apps/renterd/components/Files/FilesStatsMenu/FilesStatsMenuSize.tsx +++ b/apps/renterd/components/Files/FilesStatsMenu/FilesStatsMenuSize.tsx @@ -5,7 +5,7 @@ import { Tooltip, } from '@siafoundation/design-system' import { useObjectStats } from '@siafoundation/react-renterd' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' export function FilesStatsMenuSize() { const stats = useObjectStats({ diff --git a/apps/renterd/components/Files/useDirectoryDelete.tsx b/apps/renterd/components/Files/useDirectoryDelete.tsx index eb658ca24..4ca6e3992 100644 --- a/apps/renterd/components/Files/useDirectoryDelete.tsx +++ b/apps/renterd/components/Files/useDirectoryDelete.tsx @@ -7,7 +7,7 @@ import { Delete16 } from '@siafoundation/react-icons' import { useDialog } from '../../contexts/dialog' import { useCallback } from 'react' import { useObjectDelete } from '@siafoundation/react-renterd' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { bucketAndKeyParamsFromPath } from '../../contexts/files/paths' export function useDirectoryDelete() { diff --git a/apps/renterd/components/Hosts/HostMap/HostItem.tsx b/apps/renterd/components/Hosts/HostMap/HostItem.tsx index 17ece1bcd..a57081b84 100644 --- a/apps/renterd/components/Hosts/HostMap/HostItem.tsx +++ b/apps/renterd/components/Hosts/HostMap/HostItem.tsx @@ -1,17 +1,21 @@ import { useMemo } from 'react' import { Button, - monthsToBlocks, - TBToBytes, Text, Tooltip, countryCodeEmoji, } from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' import { cx } from 'class-variance-authority' import BigNumber from 'bignumber.js' import { SiaCentralHost } from '@siafoundation/sia-central' -import { getDownloadSpeed, getUploadSpeed } from '@siafoundation/units' +import { + monthsToBlocks, + TBToBytes, + humanBytes, + humanSiacoin, + getDownloadSpeed, + getUploadSpeed, +} from '@siafoundation/units' type Host = SiaCentralHost diff --git a/apps/renterd/components/Hosts/HostMap/utils.ts b/apps/renterd/components/Hosts/HostMap/utils.ts index c9ab3d422..0c4175c40 100644 --- a/apps/renterd/components/Hosts/HostMap/utils.ts +++ b/apps/renterd/components/Hosts/HostMap/utils.ts @@ -1,9 +1,10 @@ +import { countryCodeEmoji } from '@siafoundation/design-system' import { monthsToBlocks, TBToBytes, - countryCodeEmoji, -} from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' + humanBytes, + humanSiacoin, +} from '@siafoundation/units' import { HostDataWithLocation } from '../../../contexts/hosts/types' import BigNumber from 'bignumber.js' diff --git a/apps/renterd/components/OnboardingBar.tsx b/apps/renterd/components/OnboardingBar.tsx index 25b6fe507..07a979b5b 100644 --- a/apps/renterd/components/OnboardingBar.tsx +++ b/apps/renterd/components/OnboardingBar.tsx @@ -21,7 +21,7 @@ import { useDialog } from '../contexts/dialog' import { useNotEnoughContracts } from './Files/checks/useNotEnoughContracts' import { useAutopilotConfig, useWallet } from '@siafoundation/react-renterd' import BigNumber from 'bignumber.js' -import { humanSiacoin } from '@siafoundation/sia-js' +import { humanSiacoin } from '@siafoundation/units' import { useAppSettings } from '@siafoundation/react-core' import useLocalStorageState from 'use-local-storage-state' diff --git a/apps/renterd/contexts/config/index.tsx b/apps/renterd/contexts/config/index.tsx index 5b87ae633..12ebf1ca1 100644 --- a/apps/renterd/contexts/config/index.tsx +++ b/apps/renterd/contexts/config/index.tsx @@ -3,8 +3,6 @@ import { triggerSuccessToast, triggerErrorToast, useOnInvalid, - monthsToBlocks, - TBToBytes, minutesInMilliseconds, } from '@siafoundation/design-system' import BigNumber from 'bignumber.js' @@ -22,7 +20,7 @@ import { useAutopilotTrigger, useBusState, } from '@siafoundation/react-renterd' -import { toSiacoins } from '@siafoundation/sia-js' +import { monthsToBlocks, TBToBytes, toSiacoins } from '@siafoundation/units' import { getFields } from './fields' import { SettingsData, defaultValues, getAdvancedDefaults } from './types' import { diff --git a/apps/renterd/contexts/config/transform.spec.ts b/apps/renterd/contexts/config/transform.spec.ts index be602007d..a4db7f24d 100644 --- a/apps/renterd/contexts/config/transform.spec.ts +++ b/apps/renterd/contexts/config/transform.spec.ts @@ -13,8 +13,8 @@ import { blocksToWeeks, monthsToBlocks, weeksToBlocks, -} from '@siafoundation/design-system' -import { toHastings } from '@siafoundation/sia-js' + toHastings, +} from '@siafoundation/units' describe('tansforms', () => { describe('down', () => { diff --git a/apps/renterd/contexts/config/transform.ts b/apps/renterd/contexts/config/transform.ts index 52f9cb792..aac4c87ad 100644 --- a/apps/renterd/contexts/config/transform.ts +++ b/apps/renterd/contexts/config/transform.ts @@ -1,13 +1,8 @@ import { - blocksToWeeks, - bytesToTB, - weeksToBlocks, daysInNanoseconds, minutesInNanoseconds, - monthsToBlocks, nanosecondsInDays, nanosecondsInMinutes, - TBToBytes, toFixedMax, } from '@siafoundation/design-system' import { @@ -17,7 +12,15 @@ import { RedundancySettings, UploadPackingSettings, } from '@siafoundation/react-renterd' -import { toHastings, toSiacoins } from '@siafoundation/sia-js' +import { + toHastings, + toSiacoins, + blocksToWeeks, + bytesToTB, + weeksToBlocks, + monthsToBlocks, + TBToBytes, +} from '@siafoundation/units' import BigNumber from 'bignumber.js' import { AutopilotData, diff --git a/apps/renterd/contexts/contracts/columns.tsx b/apps/renterd/contexts/contracts/columns.tsx index 64cdc4768..81efa3e6e 100644 --- a/apps/renterd/contexts/contracts/columns.tsx +++ b/apps/renterd/contexts/contracts/columns.tsx @@ -11,7 +11,7 @@ import { Separator, } from '@siafoundation/design-system' import { ArrowUpLeft16 } from '@siafoundation/react-icons' -import { humanBytes, humanDate } from '@siafoundation/sia-js' +import { humanBytes, humanDate } from '@siafoundation/units' import { ContractData, TableColumnId } from './types' import { ContractContextMenu } from '../../components/Contracts/ContractContextMenu' import { ContractState } from '@siafoundation/react-renterd' diff --git a/apps/renterd/contexts/contracts/index.tsx b/apps/renterd/contexts/contracts/index.tsx index e58c62cd0..0b550d273 100644 --- a/apps/renterd/contexts/contracts/index.tsx +++ b/apps/renterd/contexts/contracts/index.tsx @@ -1,5 +1,4 @@ import { - blockHeightToTime, useTableState, getContractsTimeRangeBlockHeight, useDatasetEmptyState, @@ -40,7 +39,7 @@ import { columns } from './columns' import { useSiaCentralHosts } from '@siafoundation/react-sia-central' import { useSyncStatus } from '../../hooks/useSyncStatus' import { useSiascanUrl } from '../../hooks/useSiascanUrl' -import { humanSiacoin } from '@siafoundation/sia-js' +import { blockHeightToTime, humanSiacoin } from '@siafoundation/units' const defaultLimit = 50 diff --git a/apps/renterd/contexts/files/columns.tsx b/apps/renterd/contexts/files/columns.tsx index 8759c74b8..8dac5b739 100644 --- a/apps/renterd/contexts/files/columns.tsx +++ b/apps/renterd/contexts/files/columns.tsx @@ -12,7 +12,7 @@ import { FolderIcon, Locked16, } from '@siafoundation/react-icons' -import { humanBytes } from '@siafoundation/sia-js' +import { humanBytes } from '@siafoundation/units' import { FileContextMenu } from '../../components/Files/FileContextMenu' import { DirectoryContextMenu } from '../../components/Files/DirectoryContextMenu' import BigNumber from 'bignumber.js' diff --git a/apps/renterd/contexts/hosts/columns.tsx b/apps/renterd/contexts/hosts/columns.tsx index 4da6806fc..2a46e89c7 100644 --- a/apps/renterd/contexts/hosts/columns.tsx +++ b/apps/renterd/contexts/hosts/columns.tsx @@ -15,7 +15,7 @@ import { UndefinedFilled16, CheckboxCheckedFilled16, } from '@siafoundation/react-icons' -import { humanBytes, humanNumber } from '@siafoundation/sia-js' +import { humanBytes, humanNumber } from '@siafoundation/units' import { HostContext, HostData, TableColumnId } from './types' import { format, formatDistance, formatRelative } from 'date-fns' import { HostContextMenu } from '../../components/Hosts/HostContextMenu' diff --git a/apps/renterd/dialogs/RenterdSendSiacoinDialog.tsx b/apps/renterd/dialogs/RenterdSendSiacoinDialog.tsx index 8d27d500f..c1f6858dd 100644 --- a/apps/renterd/dialogs/RenterdSendSiacoinDialog.tsx +++ b/apps/renterd/dialogs/RenterdSendSiacoinDialog.tsx @@ -43,7 +43,7 @@ export function RenterdSendSiacoinDialog() { transaction: fundResponse.data.transaction, toSign: fundResponse.data.toSign, coveredFields: { - WholeTransaction: true, + wholeTransaction: true, }, }, }) diff --git a/apps/walletd/components/Wallet/WalletBalanceWithSf.tsx b/apps/walletd/components/Wallet/WalletBalanceWithSf.tsx index 5f8a543de..3a1d0e967 100644 --- a/apps/walletd/components/Wallet/WalletBalanceWithSf.tsx +++ b/apps/walletd/components/Wallet/WalletBalanceWithSf.tsx @@ -1,6 +1,6 @@ import { Warning16 } from '@siafoundation/react-icons' import { Panel, Separator, Text, Tooltip } from '@siafoundation/design-system' -import { humanSiacoin, humanSiafund } from '@siafoundation/sia-js' +import { humanSiacoin, humanSiafund } from '@siafoundation/units' import BigNumber from 'bignumber.js' import { cx } from 'class-variance-authority' diff --git a/apps/walletd/contexts/events/columns.tsx b/apps/walletd/contexts/events/columns.tsx index c38bcbc0e..a60efa370 100644 --- a/apps/walletd/contexts/events/columns.tsx +++ b/apps/walletd/contexts/events/columns.tsx @@ -6,7 +6,7 @@ import { ValueScFiat, ValueSf, } from '@siafoundation/design-system' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { CellContext, EventData, TableColumnId } from './types' type EventsTableColumn = TableColumn & { diff --git a/apps/walletd/contexts/wallets/columns.tsx b/apps/walletd/contexts/wallets/columns.tsx index d9d27f54d..5404eba96 100644 --- a/apps/walletd/contexts/wallets/columns.tsx +++ b/apps/walletd/contexts/wallets/columns.tsx @@ -9,7 +9,7 @@ import { ValueScFiat, } from '@siafoundation/design-system' import { Locked16, Unlocked16, Draggable16 } from '@siafoundation/react-icons' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { humanTimeAndUnits } from '../../lib/time' import { walletTypes } from '../../config/walletTypes' import { WalletData, TableColumnId } from './types' diff --git a/apps/walletd/dialogs/WalletAddressesAddDialog.tsx b/apps/walletd/dialogs/WalletAddressesAddDialog.tsx index 5564b19b9..70b0fdd8a 100644 --- a/apps/walletd/dialogs/WalletAddressesAddDialog.tsx +++ b/apps/walletd/dialogs/WalletAddressesAddDialog.tsx @@ -13,7 +13,7 @@ import { useCallback } from 'react' import { useForm } from 'react-hook-form' import { useDialogFormHelpers } from '../hooks/useDialogFormHelpers' import { useWallets } from '../contexts/wallets' -import { isValidAddress } from '@siafoundation/sia-js' +import { isValidAddress } from '@siafoundation/units' import { uniq } from 'lodash' export type WalletAddressesAddDialogParams = { diff --git a/apps/walletd/dialogs/WalletSendLedgerDialog/useFundAndSign.tsx b/apps/walletd/dialogs/WalletSendLedgerDialog/useFundAndSign.tsx index 2ce1fd708..e9b324b33 100644 --- a/apps/walletd/dialogs/WalletSendLedgerDialog/useFundAndSign.tsx +++ b/apps/walletd/dialogs/WalletSendLedgerDialog/useFundAndSign.tsx @@ -1,4 +1,4 @@ -import { Transaction } from '@siafoundation/react-walletd' +import { Transaction } from '@siafoundation/react-core' import { useCallback } from 'react' import { SendParams } from '../_sharedWalletSend/types' diff --git a/apps/walletd/dialogs/WalletSendLedgerDialog/useSendForm.tsx b/apps/walletd/dialogs/WalletSendLedgerDialog/useSendForm.tsx index b51e3e0d2..32ecd3c16 100644 --- a/apps/walletd/dialogs/WalletSendLedgerDialog/useSendForm.tsx +++ b/apps/walletd/dialogs/WalletSendLedgerDialog/useSendForm.tsx @@ -10,7 +10,7 @@ import { } from '@siafoundation/design-system' import { DeviceConnectForm } from '../DeviceConnectForm' import { useLedger } from '../../contexts/ledger' -import { Transaction } from '@siafoundation/react-walletd' +import { Transaction } from '@siafoundation/react-core' import { LedgerSignTxn } from './LedgerSignTxn' import { useSign } from './useSign' import { useBroadcast } from '../_sharedWalletSend/useBroadcast' diff --git a/apps/walletd/dialogs/WalletSendLedgerDialog/useSign.tsx b/apps/walletd/dialogs/WalletSendLedgerDialog/useSign.tsx index b01777ac3..cf030f90c 100644 --- a/apps/walletd/dialogs/WalletSendLedgerDialog/useSign.tsx +++ b/apps/walletd/dialogs/WalletSendLedgerDialog/useSign.tsx @@ -1,4 +1,5 @@ -import { useWalletOutputs, Transaction } from '@siafoundation/react-walletd' +import { Transaction } from '@siafoundation/react-core' +import { useWalletOutputs } from '@siafoundation/react-walletd' import { useWallets } from '../../contexts/wallets' import { useCallback } from 'react' import { useWalletAddresses } from '../../hooks/useWalletAddresses' diff --git a/apps/walletd/dialogs/_sharedWalletSend/useBroadcast.tsx b/apps/walletd/dialogs/_sharedWalletSend/useBroadcast.tsx index 8bc0202ed..2af523548 100644 --- a/apps/walletd/dialogs/_sharedWalletSend/useBroadcast.tsx +++ b/apps/walletd/dialogs/_sharedWalletSend/useBroadcast.tsx @@ -1,4 +1,5 @@ -import { useTxPoolBroadcast, Transaction } from '@siafoundation/react-walletd' +import { Transaction } from '@siafoundation/react-core' +import { useTxPoolBroadcast } from '@siafoundation/react-walletd' import { useCallback } from 'react' export function useBroadcast({ cancel }: { cancel: (t: Transaction) => void }) { diff --git a/apps/walletd/dialogs/_sharedWalletSend/useCancel.tsx b/apps/walletd/dialogs/_sharedWalletSend/useCancel.tsx index af686efd1..0a31d1b53 100644 --- a/apps/walletd/dialogs/_sharedWalletSend/useCancel.tsx +++ b/apps/walletd/dialogs/_sharedWalletSend/useCancel.tsx @@ -1,4 +1,5 @@ -import { useWalletRelease, Transaction } from '@siafoundation/react-walletd' +import { Transaction } from '@siafoundation/react-core' +import { useWalletRelease } from '@siafoundation/react-walletd' import { useWallets } from '../../contexts/wallets' import { useCallback } from 'react' import { triggerErrorToast } from '@siafoundation/design-system' diff --git a/apps/walletd/dialogs/_sharedWalletSend/useComposeForm.tsx b/apps/walletd/dialogs/_sharedWalletSend/useComposeForm.tsx index 48d70f74f..7724b6afa 100644 --- a/apps/walletd/dialogs/_sharedWalletSend/useComposeForm.tsx +++ b/apps/walletd/dialogs/_sharedWalletSend/useComposeForm.tsx @@ -1,6 +1,6 @@ /* eslint-disable react/no-unescaped-entities */ import BigNumber from 'bignumber.js' -import { isValidAddress, toHastings } from '@siafoundation/sia-js' +import { isValidAddress, toHastings } from '@siafoundation/units' import { Text, InfoTip, diff --git a/apps/walletd/lib/sign.ts b/apps/walletd/lib/sign.ts index 091cf0910..60438dd0d 100644 --- a/apps/walletd/lib/sign.ts +++ b/apps/walletd/lib/sign.ts @@ -4,7 +4,7 @@ import { SiafundElement, SiafundInput, Transaction, -} from '@siafoundation/react-walletd' +} from '@siafoundation/react-core' import { stripPrefix } from '@siafoundation/design-system' import { AddressData } from '../contexts/addresses/types' diff --git a/apps/website/components/HostMap/HostItem.tsx b/apps/website/components/HostMap/HostItem.tsx index eafb65148..e16469034 100644 --- a/apps/website/components/HostMap/HostItem.tsx +++ b/apps/website/components/HostMap/HostItem.tsx @@ -1,20 +1,24 @@ import { useMemo } from 'react' import { Button, - monthsToBlocks, - TBToBytes, Text, Tooltip, countryCodeEmoji, LinkButton, webLinks, } from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' import { cx } from 'class-variance-authority' import BigNumber from 'bignumber.js' import { SiaCentralPartialHost } from '../../content/geoHosts' import { Launch16 } from '@siafoundation/react-icons' -import { getDownloadSpeed, getUploadSpeed } from '@siafoundation/units' +import { + monthsToBlocks, + TBToBytes, + humanBytes, + humanSiacoin, + getDownloadSpeed, + getUploadSpeed, +} from '@siafoundation/units' type Props = { host: SiaCentralPartialHost diff --git a/apps/website/components/HostMap/utils.ts b/apps/website/components/HostMap/utils.ts index 0568a9b0f..79934d129 100644 --- a/apps/website/components/HostMap/utils.ts +++ b/apps/website/components/HostMap/utils.ts @@ -1,12 +1,13 @@ +import { countryCodeEmoji } from '@siafoundation/design-system' +import BigNumber from 'bignumber.js' +import { SiaCentralPartialHost } from '../../content/geoHosts' import { monthsToBlocks, TBToBytes, - countryCodeEmoji, -} from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' -import BigNumber from 'bignumber.js' -import { SiaCentralPartialHost } from '../../content/geoHosts' -import { getDownloadSpeed } from '@siafoundation/units' + humanBytes, + humanSiacoin, + getDownloadSpeed, +} from '@siafoundation/units' export function getHostLabel({ host, diff --git a/apps/website/components/Map/HostItem.tsx b/apps/website/components/Map/HostItem.tsx index 191fab1c6..4d668dd7e 100644 --- a/apps/website/components/Map/HostItem.tsx +++ b/apps/website/components/Map/HostItem.tsx @@ -1,19 +1,23 @@ import { useMemo } from 'react' import { Button, - monthsToBlocks, - TBToBytes, Text, countryCodeEmoji, LinkButton, webLinks, } from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' import { cx } from 'class-variance-authority' import BigNumber from 'bignumber.js' import { SiaCentralPartialHost } from '../../content/geoHosts' import { Launch16 } from '@carbon/icons-react' -import { getDownloadSpeed, getUploadSpeed } from '@siafoundation/units' +import { + monthsToBlocks, + TBToBytes, + humanBytes, + humanSiacoin, + getDownloadSpeed, + getUploadSpeed, +} from '@siafoundation/units' type Props = { host: SiaCentralPartialHost diff --git a/apps/website/components/Map/utils.ts b/apps/website/components/Map/utils.ts index e811e5049..80737a2a8 100644 --- a/apps/website/components/Map/utils.ts +++ b/apps/website/components/Map/utils.ts @@ -1,9 +1,10 @@ +import { countryCodeEmoji } from '@siafoundation/design-system' import { monthsToBlocks, TBToBytes, - countryCodeEmoji, -} from '@siafoundation/design-system' -import { humanBytes, humanSiacoin } from '@siafoundation/sia-js' + humanBytes, + humanSiacoin, +} from '@siafoundation/units' import { SiaCentralPartialHost } from '../../content/geoHosts' import BigNumber from 'bignumber.js' diff --git a/apps/website/content/stats.ts b/apps/website/content/stats.ts index f925e7928..abd409a4a 100644 --- a/apps/website/content/stats.ts +++ b/apps/website/content/stats.ts @@ -1,5 +1,5 @@ import { getGitHub } from '@siafoundation/data-sources' -import { humanBytes, humanNumber } from '@siafoundation/sia-js' +import { humanBytes, humanNumber } from '@siafoundation/units' import { AsyncReturnType } from '../lib/types' import { getCacheValue } from '../lib/cache' import { getMinutesInSeconds } from '../lib/time' diff --git a/libs/design-system/package.json b/libs/design-system/package.json index 1ee9d9c2a..2c0b75abe 100644 --- a/libs/design-system/package.json +++ b/libs/design-system/package.json @@ -5,8 +5,8 @@ "license": "MIT", "dependencies": { "@siafoundation/react-icons": "^0.1.0", - "@siafoundation/sia-js": "^0.11.0", "@siafoundation/react-core": "^0.15.0", + "@siafoundation/units": "^0.1.3", "@visx/group": "2.17.0", "@visx/react-spring": "2.18.0", "@visx/glyph": "2.17.0", diff --git a/libs/design-system/src/app/AlertsDialog/index.tsx b/libs/design-system/src/app/AlertsDialog/index.tsx index 6d1fd1eed..21bc2b1b7 100644 --- a/libs/design-system/src/app/AlertsDialog/index.tsx +++ b/libs/design-system/src/app/AlertsDialog/index.tsx @@ -7,7 +7,7 @@ import { Checkmark16 } from '@siafoundation/react-icons' import { Skeleton } from '../../core/Skeleton' import { Text } from '../../core/Text' import { useDatasetEmptyState } from '../../hooks/useDatasetEmptyState' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { cx } from 'class-variance-authority' import { times } from 'lodash' import { useCallback, useMemo, useState } from 'react' diff --git a/libs/design-system/src/app/ContractTimeline/Labels.tsx b/libs/design-system/src/app/ContractTimeline/Labels.tsx index cd5646a81..e31016f17 100644 --- a/libs/design-system/src/app/ContractTimeline/Labels.tsx +++ b/libs/design-system/src/app/ContractTimeline/Labels.tsx @@ -1,5 +1,5 @@ import { Text } from '../../core/Text' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' type RelativeLabelProps = { children: React.ReactNode diff --git a/libs/design-system/src/app/ContractTimeline/Point.tsx b/libs/design-system/src/app/ContractTimeline/Point.tsx index 043dad96d..76007b395 100644 --- a/libs/design-system/src/app/ContractTimeline/Point.tsx +++ b/libs/design-system/src/app/ContractTimeline/Point.tsx @@ -1,5 +1,5 @@ import { cx } from 'class-variance-authority' -import { blockHeightToTime, blocksToMilliseconds } from '../../lib/blockTime' +import { blockHeightToTime, blocksToMilliseconds } from '@siafoundation/units'; import { BlockLabel, DateLabel, RelativeLabel } from './Labels' type Color = 'gray' | 'green' | 'amber' | 'blue' diff --git a/libs/design-system/src/app/ContractTimeline/Segment.tsx b/libs/design-system/src/app/ContractTimeline/Segment.tsx index 81c35608a..ecc198137 100644 --- a/libs/design-system/src/app/ContractTimeline/Segment.tsx +++ b/libs/design-system/src/app/ContractTimeline/Segment.tsx @@ -1,5 +1,5 @@ import { cx } from 'class-variance-authority' -import { blockHeightToTime, blocksToMilliseconds } from '../../lib/blockTime' +import { blockHeightToTime, blocksToMilliseconds } from '@siafoundation/units'; import { BlockLabel, DateLabel, RelativeLabel } from './Labels' type Color = 'blue' | 'green' | 'amber' diff --git a/libs/design-system/src/app/TransactionDetailsDialog.tsx b/libs/design-system/src/app/TransactionDetailsDialog.tsx index 0427ed7fe..b8a9af69c 100644 --- a/libs/design-system/src/app/TransactionDetailsDialog.tsx +++ b/libs/design-system/src/app/TransactionDetailsDialog.tsx @@ -1,7 +1,7 @@ import { Codeblock } from '../core/Codeblock' import { Text } from '../core/Text' import { ValueSc } from '../components/ValueSc' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import BigNumber from 'bignumber.js' import { Dialog } from '../core/Dialog' import { getTitleId } from '../lib/utils' diff --git a/libs/design-system/src/app/WalletBalanceEvolution.tsx b/libs/design-system/src/app/WalletBalanceEvolution.tsx index acacef9cd..3393ad73c 100644 --- a/libs/design-system/src/app/WalletBalanceEvolution.tsx +++ b/libs/design-system/src/app/WalletBalanceEvolution.tsx @@ -2,7 +2,7 @@ import { useMemo } from 'react' import { ChartXY, Chart } from '../components/ChartXY' -import { humanSiacoin } from '@siafoundation/sia-js' +import { humanSiacoin } from '@siafoundation/units' import { formatChartData, getDataIntervalLabelFormatter, diff --git a/libs/design-system/src/app/WalletSendSiacoinDialog/Generate.tsx b/libs/design-system/src/app/WalletSendSiacoinDialog/Generate.tsx index 1901aa9bb..1709e2c51 100644 --- a/libs/design-system/src/app/WalletSendSiacoinDialog/Generate.tsx +++ b/libs/design-system/src/app/WalletSendSiacoinDialog/Generate.tsx @@ -1,7 +1,7 @@ import { useFormik } from 'formik' import * as Yup from 'yup' import BigNumber from 'bignumber.js' -import { toHastings } from '@siafoundation/sia-js' +import { toHastings } from '@siafoundation/units' import { Text } from '../../core/Text' import { InfoTip } from '../../core/InfoTip' import { Switch } from '../../core/Switch' diff --git a/libs/design-system/src/app/WalletSendSiacoinDialog/index.tsx b/libs/design-system/src/app/WalletSendSiacoinDialog/index.tsx index 73ab43c5f..425dcdcb1 100644 --- a/libs/design-system/src/app/WalletSendSiacoinDialog/index.tsx +++ b/libs/design-system/src/app/WalletSendSiacoinDialog/index.tsx @@ -2,7 +2,7 @@ import BigNumber from 'bignumber.js' import { useMemo, useState } from 'react' -import { toHastings } from '@siafoundation/sia-js' +import { toHastings } from '@siafoundation/units' import { Separator } from '../../core/Separator' import { Dialog } from '../../core/Dialog' import { useSendSiacoinGenerateForm } from './Generate' diff --git a/libs/design-system/src/components/BlockList.tsx b/libs/design-system/src/components/BlockList.tsx index ff5461e2c..2a8c8326c 100644 --- a/libs/design-system/src/components/BlockList.tsx +++ b/libs/design-system/src/components/BlockList.tsx @@ -3,7 +3,7 @@ import { Heading } from '../core/Heading' import { Link } from '../core/Link' import { Text } from '../core/Text' import { getEntityTypeLabel } from '../lib/entityTypes' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' import { formatDistance } from 'date-fns' import { EntityAvatar } from './EntityAvatar' import { cx } from 'class-variance-authority' diff --git a/libs/design-system/src/components/ChartTimeValue/index.tsx b/libs/design-system/src/components/ChartTimeValue/index.tsx index e6c7c9379..8593d78f8 100644 --- a/libs/design-system/src/components/ChartTimeValue/index.tsx +++ b/libs/design-system/src/components/ChartTimeValue/index.tsx @@ -27,7 +27,7 @@ import { Panel } from '../../core/Panel' import { getPointTime, getPointValue, Point } from './utils' import { useTheme } from 'next-themes' import { colors } from '../../config/colors' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' export type { Point } diff --git a/libs/design-system/src/components/ChartXY/ChartXYGraph.tsx b/libs/design-system/src/components/ChartXY/ChartXYGraph.tsx index a2fce567e..865d6a7c2 100644 --- a/libs/design-system/src/components/ChartXY/ChartXYGraph.tsx +++ b/libs/design-system/src/components/ChartXY/ChartXYGraph.tsx @@ -9,7 +9,7 @@ import { PatternLines } from '@visx/pattern' import { cx } from 'class-variance-authority' import { groupBy } from 'lodash' import { ChartConfig, ChartPoint } from './types' -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' export function ChartXYGraph({ id, diff --git a/libs/design-system/src/components/EntityListItem.tsx b/libs/design-system/src/components/EntityListItem.tsx index a525edfd2..2d9cfbd83 100644 --- a/libs/design-system/src/components/EntityListItem.tsx +++ b/libs/design-system/src/components/EntityListItem.tsx @@ -10,7 +10,7 @@ import { getTxTypeLabel, TxType, } from '../lib/entityTypes' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' import { formatDistance } from 'date-fns' import { upperFirst } from 'lodash' import BigNumber from 'bignumber.js' diff --git a/libs/design-system/src/components/ValueSc.tsx b/libs/design-system/src/components/ValueSc.tsx index df7841a9c..bb2fe6e06 100644 --- a/libs/design-system/src/components/ValueSc.tsx +++ b/libs/design-system/src/components/ValueSc.tsx @@ -2,7 +2,7 @@ import { Text } from '../core/Text' import { Tooltip } from '../core/Tooltip' -import { humanSiacoin } from '@siafoundation/sia-js' +import { humanSiacoin } from '@siafoundation/units' import BigNumber from 'bignumber.js' type Props = { diff --git a/libs/design-system/src/components/ValueSf.tsx b/libs/design-system/src/components/ValueSf.tsx index a3b0d7e84..5b367d346 100644 --- a/libs/design-system/src/components/ValueSf.tsx +++ b/libs/design-system/src/components/ValueSf.tsx @@ -2,7 +2,7 @@ import { Text } from '../core/Text' import { Tooltip } from '../core/Tooltip' -import { humanNumber } from '@siafoundation/sia-js' +import { humanNumber } from '@siafoundation/units' type Props = { size?: React.ComponentProps['size'] diff --git a/libs/design-system/src/form/ConfigurationSiacoin.tsx b/libs/design-system/src/form/ConfigurationSiacoin.tsx index c40e44f8c..4fe6cc21d 100644 --- a/libs/design-system/src/form/ConfigurationSiacoin.tsx +++ b/libs/design-system/src/form/ConfigurationSiacoin.tsx @@ -1,6 +1,6 @@ import { SiacoinField } from '../core/SiacoinField' import { ConfigurationTipNumber } from './ConfigurationTipNumber' -import { toHastings } from '@siafoundation/sia-js' +import { toHastings } from '@siafoundation/units' import { FieldValues, Path, PathValue, UseFormReturn } from 'react-hook-form' import { FieldLabelAndError } from '../components/Form' import { ConfigFields, useRegisterForm } from './configurationFields' diff --git a/libs/design-system/src/index.ts b/libs/design-system/src/index.ts index 3300c894f..3a03040a1 100644 --- a/libs/design-system/src/index.ts +++ b/libs/design-system/src/index.ts @@ -157,9 +157,7 @@ export * from './hooks/useOS' export * from './data/webLinks' // lib -export * from './lib/bytes' export * from './lib/sectors' -export * from './lib/blockTime' export * from './lib/toast' export * from './lib/clipboard' export * from './lib/image' diff --git a/libs/design-system/src/lib/chartData.ts b/libs/design-system/src/lib/chartData.ts index 8a497174f..70d092f08 100644 --- a/libs/design-system/src/lib/chartData.ts +++ b/libs/design-system/src/lib/chartData.ts @@ -1,4 +1,4 @@ -import { humanDate } from '@siafoundation/sia-js' +import { humanDate } from '@siafoundation/units' import { omit } from 'lodash' import { ChartPoint } from '../components/ChartXY' import { diff --git a/libs/design-system/src/lib/contracts.ts b/libs/design-system/src/lib/contracts.ts index 875a10320..d76a68bec 100644 --- a/libs/design-system/src/lib/contracts.ts +++ b/libs/design-system/src/lib/contracts.ts @@ -1,4 +1,4 @@ -import { daysToBlocks } from './blockTime' +import { daysToBlocks } from '@siafoundation/units'; import { daysInMilliseconds, monthsInMilliseconds, diff --git a/libs/design-system/src/lib/sectors.ts b/libs/design-system/src/lib/sectors.ts index c531d9f01..132a24562 100644 --- a/libs/design-system/src/lib/sectors.ts +++ b/libs/design-system/src/lib/sectors.ts @@ -1,15 +1,5 @@ import BigNumber from 'bignumber.js' -import { - bytesToGB, - bytesToGiB, - bytesToMiB, - bytesToTB, - GBToBytes, - GiBToBytes, - MiBToBytes, - TBToBytes, - TiBToBytes, -} from './bytes' +import { bytesToGB, bytesToGiB, bytesToMiB, bytesToTB, GBToBytes, GiBToBytes, MiBToBytes, TBToBytes, TiBToBytes } from '@siafoundation/units'; // function converts sectors to bytes export function sectorsToBytes( diff --git a/libs/react-renterd/src/siaTypes.ts b/libs/react-renterd/src/siaTypes.ts index 809383255..a1d7e2c76 100644 --- a/libs/react-renterd/src/siaTypes.ts +++ b/libs/react-renterd/src/siaTypes.ts @@ -46,29 +46,40 @@ export type HostSettings = { } export type HostPriceTable = { - acceptingcontracts: boolean - baserpcprice: string - collateral: string + accountbalancecost: string + collateralcost: string contractprice: string - downloadbandwidthprice: string - ephemeralaccountexpiry: number + downloadbandwidthcost: string + dropsectorsbasecost: string + dropsectorsunitcost: string + expiry: string // date + fundaccountcost: string + hassectorbasecost: string + hostblockheight: number + initbasecost: string + latestrevisioncost: string maxcollateral: string - maxdownloadbatchsize: number maxduration: number - maxephemeralaccountbalance: string - maxrevisebatchsize: number - netaddress: string - remainingstorage: number - revisionnumber: number - sectoraccessprice: string - sectorsize: number - siamuxport: string - storageprice: string - totalstorage: number - unlockhash: string - uploadbandwidthprice: string - version: string + memorytimecost: string + readbasecost: string + readlengthcost: string + registryentriesleft: number + registryentriestotal: number + renewcontractcost: string + revisionbasecost: string + subscriptionmemorycost: string + subscriptionnotificationcost: string + swapsectorcost: string + txnfeemaxrecommended: string + txnfeeminrecommended: string + uid: string + updatepricetablecost: string + uploadbandwidthcost: string + validity: number windowsize: number + writebasecost: string + writelengthcost: string + writestorecost: string } export type Sector = { diff --git a/libs/sia-js/.babelrc b/libs/sia-js/.babelrc deleted file mode 100644 index fd4cbcdef..000000000 --- a/libs/sia-js/.babelrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "presets": [ - [ - "@nx/js/babel", - { - "useBuiltIns": "usage" - } - ] - ] -} diff --git a/libs/sia-js/.eslintrc.json b/libs/sia-js/.eslintrc.json deleted file mode 100644 index 306b8e178..000000000 --- a/libs/sia-js/.eslintrc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extends": ["../../.eslintrc.json"], - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.json"], - "parser": "jsonc-eslint-parser", - "rules": { - "@nx/dependency-checks": "error" - } - } - ] -} diff --git a/libs/sia-js/CHANGELOG.md b/libs/sia-js/CHANGELOG.md deleted file mode 100644 index 058280cc1..000000000 --- a/libs/sia-js/CHANGELOG.md +++ /dev/null @@ -1,112 +0,0 @@ -# Changelog - -## 0.11.0 - -### Minor Changes - -- 1c376d0e: Package publishing format has been updated. - -## 0.10.0 - -### Minor Changes - -- 4719bc1: humanBytes now supports a fixed option. - -## 0.9.0 - -### Minor Changes - -- 7b0a75c: humanSiacoin with dynamic units now renders values less than 1e-12 as 0 SC. - -## 0.8.0 - -### Minor Changes - -- 30493f4: toSiacoins now has an option to specify decimal scale. -- 30493f4: Add a toScale function. -- 13a9882: Consolidated bytes/TiB conversion functions. - -## [0.7.1](https://github.com/SiaFoundation/web/compare/sia-js-0.7.0...sia-js-0.7.1) (2022-10-13) - -# [0.7.0](https://github.com/SiaFoundation/web/compare/sia-js-0.6.0...sia-js-0.7.0) (2022-09-29) - -### Features - -- renterd app, extract shared components ([0b3c9f3](https://github.com/SiaFoundation/web/commit/0b3c9f3e77803d0a2520ee6c5b8e08f4d4f12934)) - -# [0.6.0](https://github.com/SiaFoundation/web/compare/sia-js-0.5.0...sia-js-0.6.0) (2022-09-07) - -### Bug Fixes - -- currency tests ([6cd0781](https://github.com/SiaFoundation/web/commit/6cd078165f15834950bde8d575be6a648a4fc134)) - -### Features - -- hostd configuration, currency inputs, settings and privacy dialog, siacentral hooks ([0cc8bcc](https://github.com/SiaFoundation/web/commit/0cc8bcc2ab4057e7dbdc80aa3f06c06dfb0bd907)) - -# [0.5.0](https://github.com/SiaFoundation/web/compare/sia-js-0.4.0...sia-js-0.5.0) (2022-08-09) - -### Features - -- hostd spike ([09f3fb2](https://github.com/SiaFoundation/web/commit/09f3fb2f9d7193d5a137d8a252c0a6566f15e2cb)) - -# [0.4.0](https://github.com/SiaFoundation/web/compare/sia-js-0.3.0...sia-js-0.4.0) (2022-07-15) - -### Features - -- extract data components, spike siad ([a6f7159](https://github.com/SiaFoundation/web/commit/a6f71593796ed763486e2556104ea71598f0e208)) -- spike on siad, align on bignumber ([da05988](https://github.com/SiaFoundation/web/commit/da0598867dcf56006ed912d21486a9ab6da4ab47)) - -# [0.3.0](https://github.com/SiaFoundation/web/compare/sia-js-0.2.5...sia-js-0.3.0) (2022-06-23) - -### Features - -- spike explorer v1 ([2985d8a](https://github.com/SiaFoundation/web/commit/2985d8abddce552a4f86e6f9a91b86096d815722)) - -## [0.2.5](https://github.com/SiaFoundation/web/compare/sia-js-0.2.4...sia-js-0.2.5) (2022-05-06) - -## [0.2.4](https://github.com/SiaFoundation/web/compare/sia-js-0.2.3...sia-js-0.2.4) (2022-03-07) - -### Bug Fixes - -- fix spelling of file name ([2fd68b4](https://github.com/SiaFoundation/web/commit/2fd68b4ec266d3af5c38131b391390d12312b083)) - -## [0.2.3](https://github.com/SiaFoundation/web/compare/sia-js-0.2.2...sia-js-0.2.3) (2022-03-03) - -## [0.2.2](https://github.com/SiaFoundation/web/compare/sia-js-0.2.1...sia-js-0.2.2) (2022-03-02) - -## [0.2.1](https://github.com/SiaFoundation/web/compare/sia-js-0.2.0...sia-js-0.2.1) (2022-03-02) - -# [0.2.0](https://github.com/SiaFoundation/web/compare/sia-js-0.1.0...sia-js-0.2.0) (2022-02-26) - -### Features - -- add human-readable unit utilities ([19578d8](https://github.com/SiaFoundation/web/commit/19578d8fccefd548ea7b63b0ac76477bc3a9c585)) - -## [0.1.9](https://github.com/SiaFoundation/web/compare/sia-core-0.1.8...sia-core-0.1.9) (2022-02-16) - -## [0.1.8](https://github.com/SiaFoundation/web/compare/sia-core-0.1.7...sia-core-0.1.8) (2022-02-16) - -## [0.1.7](https://github.com/SiaFoundation/web/compare/sia-core-0.1.6...sia-core-0.1.7) (2022-02-15) - -## [0.1.6](https://github.com/SiaFoundation/web/compare/sia-core-0.1.5...sia-core-0.1.6) (2022-02-15) - -## [0.1.5](https://github.com/SiaFoundation/web/compare/sia-core-0.1.4...sia-core-0.1.5) (2022-02-15) - -## [0.1.4](https://github.com/SiaFoundation/web/compare/sia-core-0.1.3...sia-core-0.1.4) (2022-02-15) - -## [0.1.3](https://github.com/SiaFoundation/web/compare/sia-core-0.1.2...sia-core-0.1.3) (2022-02-15) - -### Bug Fixes - -- remove unused code ([c578bf4](https://github.com/SiaFoundation/web/commit/c578bf4cf8e71c41d6ecf71716ecf2734a184ef3)) - -## [0.1.2](https://github.com/SiaFoundation/web/compare/sia-core-0.1.1...sia-core-0.1.2) (2022-02-15) - -## [0.1.1](https://github.com/SiaFoundation/web/compare/sia-core-0.1.0...sia-core-0.1.1) (2022-02-15) - -# 0.1.0 (2022-02-15) - -### Features - -- test publish workflow ([f16b9f0](https://github.com/SiaFoundation/web/commit/f16b9f05acc8222a63c58c1f8f956c3d53ef1fe7)) diff --git a/libs/sia-js/README.md b/libs/sia-js/README.md deleted file mode 100644 index d1d84c563..000000000 --- a/libs/sia-js/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# sia-js - -Core Sia types and library methods. - -## Running unit tests - -Run `nx test sia-js` to execute the unit tests via [Jest](https://jestjs.io). diff --git a/libs/sia-js/jest.config.ts b/libs/sia-js/jest.config.ts deleted file mode 100644 index 78b872392..000000000 --- a/libs/sia-js/jest.config.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* eslint-disable */ -export default { - displayName: 'sia-js', - - globals: {}, - testEnvironment: 'node', - transform: { - '^.+\\.[tj]sx?$': [ - 'ts-jest', - { - tsconfig: '/tsconfig.spec.json', - }, - ], - }, - moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/sia-js', - preset: '../../jest.preset.js', -} diff --git a/libs/sia-js/package.json b/libs/sia-js/package.json deleted file mode 100644 index 00b78ffd2..000000000 --- a/libs/sia-js/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "@siafoundation/sia-js", - "description": "Core Sia types and library methods for v1 `siad`.", - "version": "0.11.0", - "license": "MIT", - "dependencies": { - "blakejs": "^1.2.1", - "lodash": "^4.17.21", - "bignumber.js": "^9.0.2", - "tslib": "^2.6.2" - }, - "types": "./src/index.d.ts" -} diff --git a/libs/sia-js/project.json b/libs/sia-js/project.json deleted file mode 100644 index e5407bb6a..000000000 --- a/libs/sia-js/project.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "sia-js", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "libs/sia-js/src", - "projectType": "library", - "targets": { - "build": { - "executor": "@nx/js:tsc", - "outputs": ["{options.outputPath}"], - "options": { - "outputPath": "dist/libs/sia-js", - "tsConfig": "libs/sia-js/tsconfig.lib.json", - "packageJson": "libs/sia-js/package.json", - "main": "libs/sia-js/src/index.ts", - "assets": ["libs/sia-js/*.md"] - }, - "configurations": {} - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/sia-js/**/*.ts", "libs/sia-js/package.json"] - } - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": ["{workspaceRoot}/coverage/libs/sia-js"], - "options": { - "jestConfig": "libs/sia-js/jest.config.ts", - "passWithNoTests": true - } - } - }, - "tags": [] -} diff --git a/libs/sia-js/src/index.ts b/libs/sia-js/src/index.ts deleted file mode 100644 index c0bfbbf4b..000000000 --- a/libs/sia-js/src/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './lib/address' -export * from './lib/humanUnits' -export * from './lib/currency' - -export * from './types' diff --git a/libs/sia-js/src/lib/transaction.spec.ts b/libs/sia-js/src/lib/transaction.spec.ts deleted file mode 100644 index cde707773..000000000 --- a/libs/sia-js/src/lib/transaction.spec.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { computeSingleTransaction } from './transaction' -import badTxData from '../mock/bad_tx.json' -import goodTxData from '../mock/good_tx.json' - -describe('transaction', () => { - it('test computeSingleTransaction', () => { - for (let i = 0; i < badTxData.confirmedtransactions.length; i++) { - const badResult = computeSingleTransaction( - badTxData.confirmedtransactions[i] - ) - const goodResult = computeSingleTransaction( - goodTxData.confirmedtransactions[i] - ) - // t.log(`Bad Result: ${badResult.totalSiacoin.toFixed(0)} Good Result: ${goodResult.totalSiacoin.toFixed(0)}`) - // if (!badResult.totalSiacoin.isEqualTo(goodResult.totalSiacoin)) { - // t.fail() - // } - expect( - badResult.totalSiacoin.isEqualTo(goodResult.totalSiacoin) - ).toBeTruthy() - } - // t.pass() - }) -}) diff --git a/libs/sia-js/src/lib/transaction.ts b/libs/sia-js/src/lib/transaction.ts deleted file mode 100644 index a6cc83af8..000000000 --- a/libs/sia-js/src/lib/transaction.ts +++ /dev/null @@ -1,112 +0,0 @@ -import { ProcessedInput, ProcessedOutput, ProcessedTransaction } from '../types' -import BigNumber from 'bignumber.js' -import { toSiacoins } from './currency' - -// export const computeTransactionSet = ( -// pts: ProcessedTransaction[], -// blockHeight: number -// ) => { -// // Loop over all transactions and map id of each contract to the most recent revision within set. -// const revisionMap = {}; -// pts.forEach(pt => { -// pt.transaction.filecontractrevisions.forEach(rev => { -// revisionMap[rev.parentid] = rev; -// }); -// }); -// let sts = []; -// for (const pt of pts) { -// // Determine the value of the transaction, assuming it's a regular tx. -// let outgoingSiacoins = new BigNumber(0); -// pt.inputs.forEach(input => { -// if (input.fundtype === 'siacoin input' && input.walletaddress) { -// outgoingSiacoins = outgoingSiacoins.plus(input.value); -// } -// }); -// let incomingSiacoins = new BigNumber(0); -// pt.outputs.forEach(output => { -// if (output.fundtype === 'miner payout' && output.walletaddress) { -// incomingSiacoins = incomingSiacoins.plus(output.value); -// } -// if (output.fundtype === 'siacoin output' && output.walletaddress) { -// incomingSiacoins = incomingSiacoins.plus(output.value); -// } -// }); -// // create the valued txn assuming it's a regular contract without contracts or revisions. -// let st = new ValuedTransaction({ -// transaction: pt, -// confirmedincomingvalue: incomingSiacoins.toString(), -// confirmedoutgoingvalue: outgoingSiacoins.toString() -// }); - -// // if transaction doesn't contain contracts or revisions we are done. -// if ( -// pt.transaction.filecontracts.length === 0 && -// pt.transaction.filecontractrevisions.length === 0 -// ) { -// sts.push(st); -// continue; -// } - -// // if there are contracts then there can't be revisions in the tx -// if (pt.transaction.filecontracts.length > 0) { -// // contract doesn't generate incoming value for wallet. -// st.confirmedincomingvalue = '0'; -// // contract with a revision doesn't have outgoing value since the outgoing -// // value is determined by the latest revision. -// // pt.transaction.filecontracts[0]. -// } -// } -// }; - -type ProceedInputOutput = (ProcessedInput | ProcessedOutput)[] -// sumCurrency will map-reduce a slice of inputs or ouputs and sum up the -// currency value based on the currency type. -function sumCurrency(ts: ProceedInputOutput, currency): BigNumber { - return ts.reduce((sum: BigNumber, t) => { - if (t.fundtype.indexOf(currency) > -1) { - return sum.plus(new BigNumber(t.value)) - } - return sum - }, new BigNumber(0)) -} - -export const computeSingleTransaction = (t: ProcessedTransaction) => { - // initialize inputs - let totalSiacoinInput = new BigNumber(0) - let totalSiafundInput = new BigNumber(0) - let totalMinerInput = new BigNumber(0) - - // initialize outputs - let totalSiacoinOutput = new BigNumber(0) - let totalSiafundOutput = new BigNumber(0) - let totalMinerOutput = new BigNumber(0) - - if (t.inputs) { - // filter the wallet inputs to ensure it's associated with the wallet address. - const walletInputs = t.inputs.filter((i) => i.walletaddress && i.value) - totalSiacoinInput = sumCurrency(walletInputs, 'siacoin') - totalSiafundInput = sumCurrency(walletInputs, 'siafund') - totalMinerInput = sumCurrency(walletInputs, 'miner') - } - if (t.outputs) { - const walletOutputs = t.outputs.filter( - (o) => - o.walletaddress && o.value && o.maturityheight === t.confirmationheight - ) - totalSiacoinOutput = sumCurrency(walletOutputs, 'siacoin') - totalSiafundOutput = sumCurrency(walletOutputs, 'siafund') - totalMinerOutput = sumCurrency(walletOutputs, 'miner') - } - - // Calculate totals - const totalSiacoin = toSiacoins(totalSiacoinOutput.minus(totalSiacoinInput)) - const totalSiafund = totalSiafundOutput.minus(totalSiafundInput) - const totalMiner = toSiacoins(totalMinerOutput.minus(totalMinerInput)) - - return { - transaction: t, - totalSiacoin, - totalSiafund, - totalMiner, - } -} diff --git a/libs/sia-js/src/mock/bad_tx.json b/libs/sia-js/src/mock/bad_tx.json deleted file mode 100644 index 07450f60b..000000000 --- a/libs/sia-js/src/mock/bad_tx.json +++ /dev/null @@ -1,38821 +0,0 @@ -{ - "confirmedtransactions": [ - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "RMW7SFsEhPSaG5YeWlsNiuj6Kp1iLHT4FUax2xSk2/Q=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1112044817322145114372702208", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1253494545950235594609131520", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1072655528480879118793867264", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1029871482236961298442289152", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1077015288571741858518794240", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1172793631463656902297124864", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1071178800332597855167315968", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1012731927080980812845744128", - "unlockhash": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017" - }, - { - "value": "1157541926788217201512939520", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1091898430701815155341524992", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1865307845066792792030707712", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1011324375378676933872844800", - "unlockhash": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3" - }, - { - "value": "1212961434110405354401562624", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1253770843708978099414892544", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1003616451479197703565475840", - "unlockhash": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4" - }, - { - "value": "1121871252830647970653011968", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1050914029484723120708648960", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1095173752682803586522415104", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "2130675968690611466620895232", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8938296682656622222900199424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["132000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "I6NbKPkPpvOrLJ5AiHW3QPuXyHsw87XvJhadw0TLx5EjwaQcjl/G3wD+Rx6RNghKXxSC0AKLzyV5Bb9kF6iSAA==" - } - ] - }, - "transactionid": "122468c1e5d8ca4d12ff4a565c1d3cbaff7faef5144103104fd4c395d335b6df", - "confirmationheight": 217888, - "confirmationtimestamp": 1564333903, - "inputs": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2f8ac2c23dc40605c2c730f1800171719d0f8bfc8d35dc5cecde180dc32df1f49c94470352ed", - "value": "31735271015018690162592088064" - } - ], - "outputs": [ - { - "id": "30f7a4b15589687022aa14f080d82fcd9bd3915e11b8604a219a0b41fab5c7e1", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1112044817322145114372702208" - }, - { - "id": "ed7201e27b6114acb78e1dc6c488344b8b7c8c0c234ea46755adc8364d951a78", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1253494545950235594609131520" - }, - { - "id": "bd1b9634b6534f6c2f5e13e6411591a2566efe2dbe45b87cadd48eee4b575b7f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1072655528480879118793867264" - }, - { - "id": "84ba715dd37005c5601fac64a8d3e84872a55aeaba1b9de4ef3c6e419f58f9c6", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1029871482236961298442289152" - }, - { - "id": "0d56454a754db1eff9106eff5e1ee1987d2c38daecc75e3c49c7622ee5989226", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1077015288571741858518794240" - }, - { - "id": "48347c531aede851614dd9ae0b08f701a6ff0ca13a504fd7fbdf1cd1aeb8aca4", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1172793631463656902297124864" - }, - { - "id": "c32aacd0e895d47d7eb648d492fc27ccbbbe2d808807d059cae64534300b23cd", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1071178800332597855167315968" - }, - { - "id": "b34e744df58481ef676a257fd44a43d0307bd722b39285e3d34a5161eaa79c8f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017", - "value": "1012731927080980812845744128" - }, - { - "id": "08b4fd977d75dafc849257839cb2c26c98db4adca2b7b32ba70b0b52a24ea6ff", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1157541926788217201512939520" - }, - { - "id": "57b2d6846232ffb46dd20d25abe46a7e3a8ab8203501d17806d4ebd65ed65453", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1091898430701815155341524992" - }, - { - "id": "fba1b0da675faff319a54bfba395e50e5ba7f8eba5d83782fab5732d2472745f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1865307845066792792030707712" - }, - { - "id": "d6582e6c858d145e92e355928e2a7a604fb8aa9905073abcc02dd70255394212", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3", - "value": "1011324375378676933872844800" - }, - { - "id": "6792eec7ae668836c561d89b75e6808056e16f08b09b10a7e635a972b13554a6", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1212961434110405354401562624" - }, - { - "id": "57f7e6d72503fbabe51df87b7e39e013940762f12e592a023419c70430afd02a", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1253770843708978099414892544" - }, - { - "id": "f12a1e175ff3b6d2a1cef366155fa55bad27af3b7f8682b3a9131e936046894f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4", - "value": "1003616451479197703565475840" - }, - { - "id": "8645cb28907b7079f665415062d1799131ab653aa97d0f69a6cc821e8a646066", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1121871252830647970653011968" - }, - { - "id": "27a33c930d679ea801b65a9bfb41f4ac9b975049c3338222a69071194fff2ca4", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1050914029484723120708648960" - }, - { - "id": "3ca97842f6576cb142ce88c7d2cb6f390b9f960c6b23b4e146474a1e69f106fd", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1095173752682803586522415104" - }, - { - "id": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2130675968690611466620895232" - }, - { - "id": "9bff610fa71605407a647b5ab451fa543f020ec411d342d7e4eec6f368166afe", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8938296682656622222900199424" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "132000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zvaNwj3ueGm7Uc9fA3P/fBxgSzI2T2mTHQ8XaEs2zZI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1108428000033416289344815104", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1217092418284693668409901056", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1396288910988126535932706816", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "1157375042801339429204787200", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2287289430006583496724709376", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9021693407719131678687363072", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["81600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G6HrDYy/4PyOl3RsbMKL8tHDulA0EcbKUs7UDXs5C0x7ctnF/a7DO817lL7jJAjuWaewzH7n06+AH8OOWFJGCA==" - } - ] - }, - "transactionid": "83b8df974030cc32935864ab1a410a005da36493564291e61e7fbc43da20028c", - "confirmationheight": 217897, - "confirmationtimestamp": 1564337314, - "inputs": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1e24b18fd2dee4229a25f35e31f48e5f17ed5f3d48632cd3e9018f58b2cb3704ba39e6d13a52", - "value": "16188248809833291098304282624" - } - ], - "outputs": [ - { - "id": "9e50501821f545ee4a45c530357121ffd914dc74ae43814067c9850b1ae00f70", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1108428000033416289344815104" - }, - { - "id": "a95a6d78c31aef29735680e2961b0f37ea66b63ed0d777977281cd0e2227f4aa", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1217092418284693668409901056" - }, - { - "id": "76bd6b6685f6e9a81f7277d99929b065aa19e1b504851df47e2b4fb4ef34b211", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1396288910988126535932706816" - }, - { - "id": "5e859a9cadd06615228f0a6f10a89d9f5500997c4b27c84fd85759f09b7f5de7", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1157375042801339429204787200" - }, - { - "id": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2287289430006583496724709376" - }, - { - "id": "caea1ef5514b17f8674eb5b9dd363c7dcf26a9a6bd6396373d0fdd296fb53787", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9021693407719131678687363072" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218041, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "81600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fHZmUL6h/7LShckXgvfdjCnNsqI9H1zBj0jrBrq6Gp0=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1021273984956638057805185024", - "unlockhash": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806" - }, - { - "value": "1027465533052343248468131840", - "unlockhash": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e" - }, - { - "value": "1042760492985783063376986112", - "unlockhash": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6" - }, - { - "value": "1185259715564364193690943488", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1073707212995278466260140032", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1162049936724621264276160512", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1203562256163595384611274752", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1250033824323862742500900864", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1146076466849428625415995392", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1046726768034078402746777600", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1794139873188520238451261440", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1068289325525373845056258048", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1021771635606133182311890944", - "unlockhash": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193" - }, - { - "value": "1045823018820275832598298624", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1096995875194698688666533888", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1077386960624449355163336704", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1054045772340336836517822464", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "2123188483956867323045871616", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8937168840587626310866567168", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["128400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HleWu+fv3KC19EZQg9YuX0mmlsaAfKGLN00gPChXqSpoU7rfbnulZgHFx6gHi5OhJz0C8bRnFMO/NzMAtlDXCA==" - } - ] - }, - "transactionid": "cdae8f9f290569fb8c4ae56ec7c0d8ee3865437de7667181da24ff5cac04707c", - "confirmationheight": 217903, - "confirmationtimestamp": 1564341355, - "inputs": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "796c4c5969a43d50bfb7c226fadd78448828afe2122debfc7411b650127b81fd246ad407ea93", - "value": "30377854377494275061830336512" - } - ], - "outputs": [ - { - "id": "69af936d3953e44ef8a8c23c068c83d419e033d10f0e18458da04d74892661e8", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806", - "value": "1021273984956638057805185024" - }, - { - "id": "20595c75c4256c72462c5f41fccc9dc2e745418ee848d84b29ef1eb4b16e67cb", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e", - "value": "1027465533052343248468131840" - }, - { - "id": "b9008dace0723a272b20c9ede9fce6d14dd9bcda76d715c10652bfc459245dd0", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6", - "value": "1042760492985783063376986112" - }, - { - "id": "de8f3f6f6771c36e0a0f70126f484c858d23d514aaedc39eae5c9662c1a1b3c4", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1185259715564364193690943488" - }, - { - "id": "0624dab94107107a7c151396e73e985be5287f3e225cdd8eaebfc42efd197284", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1073707212995278466260140032" - }, - { - "id": "6060587e227a90054eef4d9321911d0f2e04b637fdd3752ca5728336b7bfd207", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1162049936724621264276160512" - }, - { - "id": "c197629a08f3406eb7f5a92c4a8bf65445a2a55995427d178b37e16571923393", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1203562256163595384611274752" - }, - { - "id": "1700bb649b62ba243252b0cc5e79ef5b9bd48faafc25ff6048609222cb60bd1d", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1250033824323862742500900864" - }, - { - "id": "db7998d39d110cf1e823f20a1f298f9dee5445e959d43331c69fc37c5abea29a", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1146076466849428625415995392" - }, - { - "id": "f399d890a82fed2696cbddc55e1ec80f0d119b3361ec184c23dc92cf14fd75e7", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1046726768034078402746777600" - }, - { - "id": "372212721fa01ba2201fa33bdc4ff65cce0aad92aa48ca8dbfe36cb2e793e838", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1794139873188520238451261440" - }, - { - "id": "e0f571dd3c5903e1a32cdf94e72e3c9e9610c55572e90c29db62b491936b6c0b", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1068289325525373845056258048" - }, - { - "id": "65b1e3503dfc1283a62a3a33da248e4f4896f9a72129754484a9d9a4bb47d955", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193", - "value": "1021771635606133182311890944" - }, - { - "id": "a0d8de8ca8a7ac59e13579d4d81911abf56c79684e12dd448e666bf769179194", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1045823018820275832598298624" - }, - { - "id": "080439e6e83c30bee8932df7edda53e4a00b669cf2eaae0f4d203feef300d5b7", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1096995875194698688666533888" - }, - { - "id": "396e2455604d48b9dc983535b69c313ed58a8fbc343f6943b800cabd7c3771fd", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1077386960624449355163336704" - }, - { - "id": "4476dacd9ccb0fbda910659cbf2c0fa1bdf98794e2606e874f3d53262d010fcc", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1054045772340336836517822464" - }, - { - "id": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2123188483956867323045871616" - }, - { - "id": "2e43acdf2be73a44cfd961aecca0583482b84cd771eeb97e9e0a87e1c4cc668b", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8937168840587626310866567168" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218047, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "128400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "YZtOrqJot/oLsRh0sSSM8SZ1Sz+1NDKkiRDAICWOaSM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1091372206641868743203618816", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1029739433074296520549335040", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1197550517498381144267161600", - "unlockhash": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186" - }, - { - "value": "1077231167984809339874705408", - "unlockhash": "f9866f8c3718eb740316e5f76a31d30584643741df940a9c113a70ad05c5e1e2b7b3a730288c" - }, - { - "value": "1007754313627891771837775872", - "unlockhash": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc" - }, - { - "value": "1045476262932734263967088640", - "unlockhash": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e" - }, - { - "value": "1043596079355182959717154816", - "unlockhash": "7bd0a261af06166d6a1e1782ca01a6b60724bbfcb8aefc409f08d2103d383380ce46e08c30e6" - }, - { - "value": "1118462592178162421318811648", - "unlockhash": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db" - }, - { - "value": "1020274661045174197013938176", - "unlockhash": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f" - }, - { - "value": "1348512630970554028316950528", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1121094236668707542182920192", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1075329957666801992120074240", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "3080094023419672392990982144", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1032608459169984847636447232", - "unlockhash": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba" - }, - { - "value": "1067201914508458460318793728", - "unlockhash": "f23bc92b9a7933461ff4069c0f927b9dc1c2f03a2352b65115325f835d068a5832c0d5680e23" - }, - { - "value": "3690513053621146321904730112", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1172814422255301344422264832", - "unlockhash": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db" - }, - { - "value": "4788857935100334703154036736", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1078799561894702536963653632", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1106165128589399239540080640", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1074903581381798826780655616", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1285531983436891462041600000", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1019867714207057040186015744", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1309214784780834665981280256", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1079325249276490582829039616", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1027407083034476572328263680", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1473413130871114494669488128", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1118907878844550553703284736", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1053497242473084694473408512", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1938340869435924139407835136", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1574469109525823988488470528", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1019367652276134933464088576", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1073798652917189848672763904", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1150075986175151241183625216", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1035083335710008577594753024", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1040850021814801439861243904", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1088488609586248495371780096", - "unlockhash": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02" - }, - { - "value": "1222406292544424668194406400", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1390651788900013225613983744", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1261101932094548768156811264", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1188745872167767604890959872", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1156089550182365872055648256", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1231472621187694364928770048", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1109717177478764068099719168", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1055129567977607679532220416", - "unlockhash": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0" - }, - { - "value": "1048564737222333631081627648", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - }, - { - "value": "1374976934484670055214743552", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2216366038787625402522140672", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1011832844111886827150770176", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - }, - { - "value": "1210062893919237233732485120", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RwrFBZNo+odRTmzVyCRbgK6eZ+e5UIL+hUoqwL/Tbw29YBxdCNF/dz6OEITDz9SUu2ri3xCz6QJSHQXUcEiRCQ==" - } - ] - }, - "transactionid": "c65137f6cf0d142d33f4f074288bb8aebc3f5fd63a021727a4b0afbaecaee1ff", - "confirmationheight": 217909, - "confirmationtimestamp": 1564346529, - "inputs": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "8b4e57adf4d1c557f4868be02433343021062de314b1773025fea69515d2dc62e822b90de4e6", - "value": "67033349695010085729512407040" - } - ], - "outputs": [ - { - "id": "79b7bcf02f5153020fbbb17efbda60077e78f70177fdcaa68d9cf334a1b45381", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1091372206641868743203618816" - }, - { - "id": "e7ce3839bdc9b2b57f5ada23a49d214e6fbbdd76d3f46589a4d0ab9c351cabd7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1029739433074296520549335040" - }, - { - "id": "c540b496b94aa10b9865aa55f0b3134c4d8014966f978bd940541f83c779663e", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186", - "value": "1197550517498381144267161600" - }, - { - "id": "9bb56b775a5f29bf20f3e58f09e0090a060f72c708dab8281d93e6657179ffdd", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f9866f8c3718eb740316e5f76a31d30584643741df940a9c113a70ad05c5e1e2b7b3a730288c", - "value": "1077231167984809339874705408" - }, - { - "id": "42a9f8eb39e3ddda3e392ce7cd47cab946273b1f28ebcabfa26ace824cca54c5", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc", - "value": "1007754313627891771837775872" - }, - { - "id": "f6452df5e593ea7f059d20b287062c8e1e8e0309a67fd658d159bd5afbe250c2", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e", - "value": "1045476262932734263967088640" - }, - { - "id": "5ea2bc59165c63ea3331dbd01b773aacea66bb46f267ca40de27069e504be5aa", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7bd0a261af06166d6a1e1782ca01a6b60724bbfcb8aefc409f08d2103d383380ce46e08c30e6", - "value": "1043596079355182959717154816" - }, - { - "id": "bae92c87902893f53ab66824b7fbb5c906aacaec7764ae6d7d22b6b07a824cd0", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db", - "value": "1118462592178162421318811648" - }, - { - "id": "cdefaab5c7f45c661b9df2f5b47ac22ddf68b5624e5f97a7578cd66d07534347", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f", - "value": "1020274661045174197013938176" - }, - { - "id": "cd364c767a0a489397c78542fc53e2c6230addafed70300497e92a1b47565f5c", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1348512630970554028316950528" - }, - { - "id": "c7cca731e2a5e6d70bd8dee86c075732e284434206558a85657f2081b9012e65", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1121094236668707542182920192" - }, - { - "id": "50dc725f9deed0ead101cb37f00ab79a3bb590ec4f905832a08a8ad7844508f4", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1075329957666801992120074240" - }, - { - "id": "a766db7d08030a575473d866308502b1ee83540e71191dd4bc0d17d23b2a5bff", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3080094023419672392990982144" - }, - { - "id": "cdc2697f3640d06e9ddd861400457c42cf6058e1ed6bc3d9b7edd2ec2159d24e", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba", - "value": "1032608459169984847636447232" - }, - { - "id": "da3701ee120b259df44115a0167ea6b0b690ec471b1ee270446dad1694c772a8", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f23bc92b9a7933461ff4069c0f927b9dc1c2f03a2352b65115325f835d068a5832c0d5680e23", - "value": "1067201914508458460318793728" - }, - { - "id": "bb0e175221ce71d50d069ab059a712eac25e90a022ad76ee9fda41e579f7630b", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3690513053621146321904730112" - }, - { - "id": "e82fa60eef0c21d08e29ebb90a61b4004fc2a768933a77c32bbbad0e1cbb9900", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db", - "value": "1172814422255301344422264832" - }, - { - "id": "d51782d54967860d6a37400c233621a178b9b9b4581825af5250069d632e9963", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4788857935100334703154036736" - }, - { - "id": "67228d121570dfa8976657b0c3cbf71735d083f324d3a839d8e51df981179ed6", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1078799561894702536963653632" - }, - { - "id": "b9bfd02daa61884ee3de84ef46b0854642364ea66c53aa2e52938a1c60cfe2a9", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1106165128589399239540080640" - }, - { - "id": "ac819e43942eed7f100c065e65294b4f91cef15349b28a38b134123cd6d66bd7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1074903581381798826780655616" - }, - { - "id": "62e075e04d41d5acbaccfd178f6a77a83dc2db98e7b05e94bae5cd177a053c12", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1285531983436891462041600000" - }, - { - "id": "8384ef0d4785d20e973cefe7e1df1424f9dbe5fed6cb731e66035ec50b82ba2c", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1019867714207057040186015744" - }, - { - "id": "867850a7740d6de94b1e0c7a378f2be5a275d72e2dca2b7a3d61afa2ee5bf562", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1309214784780834665981280256" - }, - { - "id": "47c8c6bb5c274cd16b8a818924bc41fbee98128f8c810ea0515133b7242f6e22", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1079325249276490582829039616" - }, - { - "id": "d569d09a66fb54ea0c192a48cac432e1c2b27ec5a23fd633db140a3d58a8c630", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1027407083034476572328263680" - }, - { - "id": "22e940a2c1fa55e6f327f7ad18cb6ab79809933d1af5d97a942f183e60e6d507", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1473413130871114494669488128" - }, - { - "id": "b9efa2c94fe105239e8f04e34b0d763c9e9fd361ee4453fb226b084010ded7f7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1118907878844550553703284736" - }, - { - "id": "f88e4154a355e90660216c6012eae78cea8e3764584dc1debb5d3f135f4b8516", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1053497242473084694473408512" - }, - { - "id": "22134e5d6d1edfc5301ef94eedf671b306b864383f8f90c4f7599c147b1a0f50", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1938340869435924139407835136" - }, - { - "id": "43bcee365d29bc64a588dd22a741f5904c625d1ff7d8e030a7f46e020bb84369", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1574469109525823988488470528" - }, - { - "id": "59dd8271bc24a7ec5ad8a391b1800bfaf327be61c05791c818b3f8465d91e345", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1019367652276134933464088576" - }, - { - "id": "4430e560af7a41725fa1f783cfd2a59704dfbef37e8e6c9085f17ef3a58761e3", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1073798652917189848672763904" - }, - { - "id": "de428558ae36851e4e8cb16af9c58cb2cab96d868694d6d049559a1b7deb0586", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1150075986175151241183625216" - }, - { - "id": "37c2a2f89b79c8c67dd4cf835d8a6853d3f5bd203e7f9c58bc0856b4931d5692", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1035083335710008577594753024" - }, - { - "id": "7ee34b938550edbb7b1762fda0cf4c48ce6d1e70f9d3bf469ab07cc0e4fb3b09", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1040850021814801439861243904" - }, - { - "id": "eb961f543b1c6875349665c8d0886a38d56ad4ba46320c9fbb424ada10b827b7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02", - "value": "1088488609586248495371780096" - }, - { - "id": "d04b5aabfbd96fde12ba5f36bd936652dfe6642dd7df8e4ec1edcbcf784d9549", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1222406292544424668194406400" - }, - { - "id": "faa176fd6f5ca69d3d9d7afc6e3012eeef66f31a894fa9eae36a9a25b9df668f", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1390651788900013225613983744" - }, - { - "id": "669cf528fc9694953f5c2276cfcd99ffb23206b5df77d6fda0e6cc1f9603e39b", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1261101932094548768156811264" - }, - { - "id": "4bd98673ead28261312fcf7dce0e1036061e39aa390aee3ef63e3f2bdb390e70", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1188745872167767604890959872" - }, - { - "id": "5791d8bd5e67f5f764a56c83568144de01e26d1f86ecca533dff4da6915ee31f", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1156089550182365872055648256" - }, - { - "id": "958829ac1c1a6e999134ed44e47e76b559af1a87547648d15f6d7b540c34c6c4", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1231472621187694364928770048" - }, - { - "id": "28372428fd148ea8f28bf3fcd2c60af94e9243e9915cbbdf4956af97bd7fd3a6", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1109717177478764068099719168" - }, - { - "id": "7105b266d00fc5a9263a0c891bc7287fbc8932e4970282abb1d8dc31721f26a5", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0", - "value": "1055129567977607679532220416" - }, - { - "id": "e458e5672b9e661e743942002e5053c6ebcd894544731c7cfb5371fddbf6b07d", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1048564737222333631081627648" - }, - { - "id": "d5b4ad3937a59b3e5bd9effe4dfb2a9483b4b5470813c16cf0edfc7a68a11e07", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1374976934484670055214743552" - }, - { - "id": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2216366038787625402522140672" - }, - { - "id": "06ea06d9c4cc86b2f97fea002a15511ece279ef3cc359a2c62d980123afb54f2", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1011832844111886827150770176" - }, - { - "id": "44ca789ee822b97341736c92c590eb9752e23a51d7587ec79b3f1d7dea148e45", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1210062893919237233732485120" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218053, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fJGCR5FCIe0tLQPoFb7cVDqX+oJLQT+qN6OCorzaF1k=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1250625008698753897312813056", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1027168342873506666241294336", - "unlockhash": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a" - }, - { - "value": "1051601605680970050275311616", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1102107271678546254692352000", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1036952563753717459369230336", - "unlockhash": "a0bc97ae208edd060d087093029a5d85eb57d885177c03b82f2c34822f63246ed47c3041e176" - }, - { - "value": "1119870460173583115246108672", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1118388427605712911967715328", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1108013915396283377817485312", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1888213790347276397698875392", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1033702534358058768082894848", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1029910784563401439629213696", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1107215556274033268472676352", - "unlockhash": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6" - }, - { - "value": "1024271331614272995585163264", - "unlockhash": "af33fd53d292edf461219b8e13abbe0f5f551886e6c8855ab9ee31a2d5307b737d47fba15bb6" - }, - { - "value": "1001504534813565478864289792", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1098239530272511822419427328", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1050697185595010072862785536", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1006502339421368949110734848", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2158098829662201704840429568", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8778503410214821150578442240", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["128400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DQvXmzF1b3q59k9Bu7iglBeVahH8v5qAhZRgbrUZEggsKVfnk+eAYqKQfJbOlQPkHCKdSUM4WP/Xi1b+g8ogCA==" - } - ] - }, - "transactionid": "a0e1c205cfdc2c46aa86009f14a28c619fbf3a87add38525a8c813ac4327aec8", - "confirmationheight": 217914, - "confirmationtimestamp": 1564348369, - "inputs": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b0a64dafaf5adbe4750661b006ec5f4494af747c0a454ddaf7ecfedd4d8242e09b43c1f5865e", - "value": "29991715822997595781067243520" - } - ], - "outputs": [ - { - "id": "f0ecf125c0bde240949d39ce249fc2f82ae0415eb15ebf23c550d9632be38c35", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1250625008698753897312813056" - }, - { - "id": "741a463e03faa77e8e2c77d20b8927f865a6be2e0bcb27ed13e0ea6b0c92a89f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a", - "value": "1027168342873506666241294336" - }, - { - "id": "f99068fc40dd93acf9e0cc28dec58c93fdd1ae6150814615d6ec927d60274c77", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1051601605680970050275311616" - }, - { - "id": "3e9f297e58f77bf9d58b128220bcc7657ab03c8030df10f67067cc0bd5a8509f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1102107271678546254692352000" - }, - { - "id": "72e63f9cff1c3ad0ef956aecd5b1c83f7652af1da984c9e0b328972911f5414a", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "a0bc97ae208edd060d087093029a5d85eb57d885177c03b82f2c34822f63246ed47c3041e176", - "value": "1036952563753717459369230336" - }, - { - "id": "0ea3cfa19f29a52bd8bba8969708e472a6bf67d1ca13e57fa384e07379b120a4", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1119870460173583115246108672" - }, - { - "id": "9c0c632e29cd65d959e0eded3134542b8ac6a4a0fee7918fb987b594490b2ab3", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1118388427605712911967715328" - }, - { - "id": "506c61bc8e78d245b88a1f2045b4ac8a50711ad1d4a131ba389907a629824230", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1108013915396283377817485312" - }, - { - "id": "1275bb337c7097b8ebc16675d6f05472faf1a086bb4bbabb38bf1ae45cb87919", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1888213790347276397698875392" - }, - { - "id": "79b20920b09c004df8cfbababf0a72d71149f1b17e57d44f0ff785e5cb30a9c9", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1033702534358058768082894848" - }, - { - "id": "dcd6a2f43d3ec6046c7d63db20625bdaab0e60de59460bd19985245182939a6f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1029910784563401439629213696" - }, - { - "id": "d19a840a2655d2d3c4d786ca1e58cb9676143105224f7d69d9f7938ed15449c9", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6", - "value": "1107215556274033268472676352" - }, - { - "id": "50a11c88e038eb2832736448167115bfcbe4a3c2c1551a1d0d6fae02c84202c5", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "af33fd53d292edf461219b8e13abbe0f5f551886e6c8855ab9ee31a2d5307b737d47fba15bb6", - "value": "1024271331614272995585163264" - }, - { - "id": "7f167fa5b7677ab67f0a0a94b6d7d9c696ca2bf67c6c441847532fb613358547", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1001504534813565478864289792" - }, - { - "id": "ca12f903ca277b23a0fb5deaac89586133312834c44f2335e5b575982690cb66", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1098239530272511822419427328" - }, - { - "id": "2fd2e92140fcca2c211086a6f0e8a3b6e05c03b70c40ccf20e93f535553ba9ce", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1050697185595010072862785536" - }, - { - "id": "56e15d5984c03f6e0d296b4d409b2894127a898055540470e8b57906bab43421", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1006502339421368949110734848" - }, - { - "id": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2158098829662201704840429568" - }, - { - "id": "15f7b0e25e36e9f7916f959803a33a449fe06b2328e05af226966d19164c0cef", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8778503410214821150578442240" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "128400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "AdD5TDYtJLpPb+ksDtGzx5Zf/4O3AICnpvgu0b+ZKOk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1021520562284807139832365056", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1349805136028407182523367424", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1112496561844932740563075072", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1049802620508871376271376384", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1144007744999072302038253568", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1069029153736123013717688320", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1008160524370913302546219008", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "1013857733652774782664212480", - "unlockhash": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f" - }, - { - "value": "1013950908704312796955279360", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1375700313236679877389713408", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2225842357202115310898905088", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9153623846861490135184179200", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["103200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pdsqqWhYnp9cheW2oBelCuWvrrKEBFL7OEUD7QyoyY1PQHQTYwPryBkjm6vsDbb2vdtpHrHtDhehBHJNT8DpCg==" - } - ] - }, - "transactionid": "05bed1a1aec14adf91393683089da90885ddc6cd6911665a07bfd270f27a9d56", - "confirmationheight": 217923, - "confirmationtimestamp": 1564351964, - "inputs": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "21371e01a869c74fb6d6dab444ce811d59cebb9cba69c2e12883bf9f15d713dbd660d7c6d437", - "value": "22537900663430499960584634368" - } - ], - "outputs": [ - { - "id": "33987a62e93a86a96b2596eeb546488951e0cd649b62047a0e1efe57053a163d", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1021520562284807139832365056" - }, - { - "id": "744e3c1e912b4b5622b07dd36c871693553ee47d436449ec70ae042ebeacab20", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1349805136028407182523367424" - }, - { - "id": "c7099602fd18c929f7991af19699c66227c9c7d5270bc00f58a05a071fed5beb", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1112496561844932740563075072" - }, - { - "id": "17d5c3b42b3983062f7a06378eaed2c18653d7b38a3c7ede779c6665cbb53d8c", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1049802620508871376271376384" - }, - { - "id": "cc9dc1556e21e9d5daba1ae24178b58355f59abf13cf81694caa220e08e81a26", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1144007744999072302038253568" - }, - { - "id": "4e57d1541f0b26c484fb946a11d54046ba97085362826e57a8f8a9e013cb2058", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1069029153736123013717688320" - }, - { - "id": "1905664d9932d3a8e5094e30573cf681205737f2a874396679b284bd3a779c03", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1008160524370913302546219008" - }, - { - "id": "3c659fb61e801a1d18320c737b95adc14a686144fe0997e7edcb59c0a8be6b92", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f", - "value": "1013857733652774782664212480" - }, - { - "id": "6676e5e5e5b94a350d006001e835d449fed2ceb6ac2dbe3e46b4670aec8b0097", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1013950908704312796955279360" - }, - { - "id": "a855995d33f3cd82614e2c702137551976bc64c96ae176f3d3f70c944a30eb41", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1375700313236679877389713408" - }, - { - "id": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2225842357202115310898905088" - }, - { - "id": "9e2ffd9859baecf0c86ee4872f1eeb7108715c889b56e8a1fd6e7ab6a7d7edfa", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9153623846861490135184179200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218067, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "103200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "F7pihG+niTGkL0XmjpQm4DArAWX4ZmK79CcKSwQi9P4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1254290200130731380256014336", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1103718774668184395519623168", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1269433452739711468077842432", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1493327755016779839443042304", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1015019534495111334413369344", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1124459512208817886099144704", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1152088312738757486043987968", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1045392107337516755925172224", - "unlockhash": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf" - }, - { - "value": "1247326579818585901731676160", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1148256208207356880146661376", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1815829313035849533346545664", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1224003296793179726008025088", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1019480913260981462188294144", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "1017541520396081299290980352", - "unlockhash": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea" - }, - { - "value": "1189630153714879804836151296", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1222089855295828331409309696", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1033670616213494964734787584", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1025073779932910700283035648", - "unlockhash": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138" - }, - { - "value": "1051719747035075822263074816", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "2288340320019050018468003840", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9015516644151016674687975424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["135600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vxOVWqVGtWDCQr2AOSrV9IdqHKiEHlTKEhOEqhmZZtOS6lrwU/iJeFJmBhCPCwCsE+zRiRwKEyL85/pXIQRTDg==" - } - ] - }, - "transactionid": "99706e3ddf3c8fc65079879faa1ef99837b518b285a88008a6c2e2c0928d7389", - "confirmationheight": 217927, - "confirmationtimestamp": 1564355339, - "inputs": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d811a45977ff79ed82ffb5406e84baa00fc9ecf1d42321de72da7b51a494642d4e14197a5b8", - "value": "33756344197209901665172717568" - } - ], - "outputs": [ - { - "id": "2e58163ad662e0ab1353c8fa8021e8cb4b1b9cc61a1369bbddd2b545a6073c6b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1254290200130731380256014336" - }, - { - "id": "a742c39a70e369326d6d75afa1573108820083bdccc112f22d87277be497fc13", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1103718774668184395519623168" - }, - { - "id": "a117e17f8dd7b541daecebefad3eaa57ddb7f10234dd0b002538bca591bf413c", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1269433452739711468077842432" - }, - { - "id": "5b71d1e61060567764ff782c611cf6f84f280abab66d96661bcc9cbf9492953d", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1493327755016779839443042304" - }, - { - "id": "8954507feb37ae0ff1d10103acfcf8b53eb5ccc7d936a89ece8fc48cc9ca5e0b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1015019534495111334413369344" - }, - { - "id": "42c181487fea9f83c5a0686cf1dc28bfb446d5f5539b88128ef9e093f612846b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1124459512208817886099144704" - }, - { - "id": "946776f6acca074d03bceeabdb10c07406ff57dba070dcba2cde76dc7c3463af", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1152088312738757486043987968" - }, - { - "id": "a25189c141ae9f5703ecab75e93da7682b73d1055520111f13e885cd81929c77", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf", - "value": "1045392107337516755925172224" - }, - { - "id": "f6beb807936e278454257a9c65ed26b6549bd0090314d828f07e065b21777c25", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1247326579818585901731676160" - }, - { - "id": "3971caa77858f35266dda2aa6e3af6c35f1a8d48dd4d97c349eab4d8144e5975", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1148256208207356880146661376" - }, - { - "id": "19851e76127bb89b8871c356f3b56a729ab1ced49d9be44bef208f54710cd08a", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1815829313035849533346545664" - }, - { - "id": "115dc8801139b592542c243bb927ab9634867eb07ac285248a8861519a09b999", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1224003296793179726008025088" - }, - { - "id": "0e7ea5ab86842a2651b4bfdd7e8133696c3a29c7aa4d3831bfc07b008c2dd908", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1019480913260981462188294144" - }, - { - "id": "68bc09d2afacfaed8fbb55657d67eb9abdab668fcbe36ccb4e2632ab5d444743", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea", - "value": "1017541520396081299290980352" - }, - { - "id": "0f11b7c9e3c3a64e7e3c0b96a8e04754e6032621bbde20ed788dc01d29e0ca31", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1189630153714879804836151296" - }, - { - "id": "6b141fc4b28571336e175fece5f3365ac66af92a9d11efbfa41f3eafb6a934bb", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1222089855295828331409309696" - }, - { - "id": "ef22f923574f1efadfdff9231d17222e072ae4a04718c66d89bb4876caa34871", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1033670616213494964734787584" - }, - { - "id": "e2f0f04d96db584f0a54a5510afa7eeaf9cb58cc39b3e754e6bdbd1563e73035", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138", - "value": "1025073779932910700283035648" - }, - { - "id": "e2aad3495cd61172defa07f24b8579703258f6e98323e1f34c6b8d7abd74219b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1051719747035075822263074816" - }, - { - "id": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2288340320019050018468003840" - }, - { - "id": "0192ba8b0f90dd17d0383e5b94590436f80887d934f672955812946804b78aea", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9015516644151016674687975424" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218071, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "135600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "l0UTBj5TYIvli8doXYMaG9fWy/+LzEfOh2tA+n7b2Ko=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1099477557140763626603544576", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1034287971055567679809257472", - "unlockhash": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57" - }, - { - "value": "1150019535311311953495326720", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1397128567448773269864316928", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2304601468820054213987926016", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8734116175084493251677257728", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["81600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ud/2MehcoOqCmDk7N0y12rahMIbg4p0jCk/+iFEawGDHoTwrUU4B+3YDw0TsZRigBr8+HxBEmWdiNugKzxXmBw==" - } - ] - }, - "transactionid": "ca4c058934c87edb6889b075f6cd9391c21d0ad27613a7abb35f2a131fb89165", - "confirmationheight": 217935, - "confirmationtimestamp": 1564360767, - "inputs": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "029a2fcf59efacb776be9f824f558e5dddc0c925e2b2f376b212b7fa5452e994cd1ce71ec15d", - "value": "15719712874860963995437629440" - } - ], - "outputs": [ - { - "id": "8e3e73f001cda36e98eb9a3a0b578c14ddcf1d7d91c96f396af3477df8e325f9", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1099477557140763626603544576" - }, - { - "id": "2df68dac5050f2fc3dd7dd2c2de150eb495ad7f1d716f38873b66c7cf0ed36cb", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57", - "value": "1034287971055567679809257472" - }, - { - "id": "b26a41700b84e4cb3e5cfc81cdc7e4b0e1fafcdc9e725995400e62c62c366390", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1150019535311311953495326720" - }, - { - "id": "068724ffd0732fc0302db9f3390d53d9423b727d99808820a7aa2fb7e959a9af", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1397128567448773269864316928" - }, - { - "id": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2304601468820054213987926016" - }, - { - "id": "0578b774de9d418c4a7bd6cda66b3b48213b47caa66b6c5f939ab716b6700f4e", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8734116175084493251677257728" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218079, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "81600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "BZrMHLwODYMQopShErz8A5XQcmPtzt/5TF9EoE3a4W8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1042369611872389027439378432", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1012632328879437052416950272", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1077067586391748777782804480", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1050911041391627266244083712", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1346632229895369436648439808", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1009638413396763964774809600", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1039595923156767828426981376", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1025370617741587559966588928", - "unlockhash": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675" - }, - { - "value": "1004338183056955498228072448", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1021554103079311066387447808", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1123875664993865058622636032", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1111488182171897963765694464", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1144911275185183893004222464", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1123027006450082115659169792", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1207935269037725194825760768", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1196170239939327237360975872", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1815726196002835302845513728", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1488242491085074877572448256", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1005546904233685942500556800", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1110006990429034085794054144", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1240691025997166706351013888", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1039917499899537771067736064", - "unlockhash": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6" - }, - { - "value": "1041638781582996987537915904", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1023493368450835720505622528", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1091452395514818397176463360", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2534320843099668530885296128", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9357108676094729804861931520", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1111901105397682918060982272", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["160800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jZ97pJAwSFkov52hdhf1x3kahwb15GCTgUxP1NxpZPprhB66Y0iV4KujoTIjy5/4HBp5OEWlte5HjgL1jcyaBg==" - } - ] - }, - "transactionid": "40399293cc91fd970015e2b9d8fa41e95871b2e2a155faca65d4db7ab139ab12", - "confirmationheight": 217938, - "confirmationtimestamp": 1564362491, - "inputs": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b32f10d44a85f9d2f86378d42b6282ca90b75c7e86e64bc222e66aa11cdf3cc28e79d17ec4b3", - "value": "41397724754428105986713550848" - } - ], - "outputs": [ - { - "id": "f133b99505832126e5a6c57cd94b0de9587f165320bd50d3c77f42f5ddea9599", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1042369611872389027439378432" - }, - { - "id": "72afd64c7b9c0cf3c839c5ed1ac8e840e21cfc905368cc0aad7ad95fac883a18", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1012632328879437052416950272" - }, - { - "id": "dcddc6edaa03b20d842b08c0a50bb643564fa2bd41f861a1f14144daef14d937", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1077067586391748777782804480" - }, - { - "id": "780a1de15d8d58eb0417fda36e62e95c3f71622f2f77ab890520e9e879b8ecbf", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1050911041391627266244083712" - }, - { - "id": "7fbaf9c5498e83af6f1fc09a9b966dbb4c7d4049c494ce8fdba384858098913e", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1346632229895369436648439808" - }, - { - "id": "6c7a41d0d3f74f4f4551030cf185d039949fcb57d94470d4e394ccc471b17321", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1009638413396763964774809600" - }, - { - "id": "4e4e16bbdf8a7b9e248c493efe5abc0e5f6ef468bfb8bb980b196a94428787a1", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1039595923156767828426981376" - }, - { - "id": "f810cb5f0f8ebacc05ef1243436cccfeeb5d870f6f7232ff0359dd3afb846f8f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675", - "value": "1025370617741587559966588928" - }, - { - "id": "68306bbee627d5950795419ce8f5a2bb9ff40f9a545356cf6914e1f82566b912", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1004338183056955498228072448" - }, - { - "id": "b46deb9ee028fb44120902769a48f4abd2fa69bb75d215c37659a3f10df155b4", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1021554103079311066387447808" - }, - { - "id": "8c704dc85a10872ae0a6da4c35f9a5cc4c9fa81eb2e39258e0ebaccc2fe36573", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1123875664993865058622636032" - }, - { - "id": "ce246d1cedd43d606819cdb9696a2fd07b3826c31b37065031d9970d88f5c39c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1111488182171897963765694464" - }, - { - "id": "2738a33b4db4f6e6dd0edbe6c014fa664f56af0f0f2c043d73d43e9ce6572062", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1144911275185183893004222464" - }, - { - "id": "99a98aebeb23fd72f4b9a3cf6c65628031b738f8eb41410b28e9bacb6a16d224", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1123027006450082115659169792" - }, - { - "id": "20ef3134fe82cd5348be46e959f2b15ddfd86b74ff5a0155825868f192324fd3", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1207935269037725194825760768" - }, - { - "id": "e8e7bdb6437c12939866da31d7a642876907f365c829f6e4aca0bf8b65434c3f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1196170239939327237360975872" - }, - { - "id": "b03804bbf05b469e5bf0cc885b219c3fe17d58ed6c46fe2a7bdf838bc0341f3f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1815726196002835302845513728" - }, - { - "id": "f536d9361f0389ec28741696bf8bc86ef015400619fc7d47b9ab1dd9e11cca27", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1488242491085074877572448256" - }, - { - "id": "b275f38959056d15dc0d016892e8bd5b5792947dce9e35feae304b294f616484", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1005546904233685942500556800" - }, - { - "id": "126359d2931048195a4fbe0b958f7656029889134a0af2530ccb52ea71d37a90", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1110006990429034085794054144" - }, - { - "id": "a8146ba83f91f36f725669436d1e00dce7f7e7962fdeea9974e30c58fde713ce", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1240691025997166706351013888" - }, - { - "id": "f435e57e5e1d2444f94641f6473012ef7aab06f93faa4a3a99c48b57d717d0a1", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6", - "value": "1039917499899537771067736064" - }, - { - "id": "211223d045ebabaff5586fd7fc31dd857d4ba8aea78678694ebfbbd41530161c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1041638781582996987537915904" - }, - { - "id": "49c4d2024f9436ead6aeede5272f3b0b648181424911e8ba4653125f54d0e719", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1023493368450835720505622528" - }, - { - "id": "7ca77b63dd4945a2382fbd1c77b7545132377cd2bb0fd62fdae7498bd9ff793d", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1091452395514818397176463360" - }, - { - "id": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534320843099668530885296128" - }, - { - "id": "791d37bd5cd5e773b1bf3c9536347b9e987466ecbf0931778856f904e5fde20c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9357108676094729804861931520" - }, - { - "id": "4c52cf96cdaa39b0805bc46a633b88795255e0975665950ef8f5b8079f686dd3", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1111901105397682918060982272" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218082, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "160800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "vLapdWPZzQbZ1Dgt7lH81nesPofp0lSqy0tz4YArdOg=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1120331109114685820122431488", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1020333210290437356874252288", - "unlockhash": "e2e009cbf7a4598584cdd917479c174ad53c009f9f4477e393a6e6804278a312fb67bf889712" - }, - { - "value": "1024872769276144043838472192", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1470324719434935005191602176", - "unlockhash": "b61444705b40f45086eb61590eeea97fb193735169ba9dc8415e389d67db1d4f8f77234469d0" - }, - { - "value": "1029313198510001106261639168", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "1116224254039193406297604096", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1079538949182371198899585024", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1206483259024042343803125760", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1014359992341827931676344320", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1006794972121764260961648640", - "unlockhash": "a08f50f9f7c4d31ff04da063346cf0986f3353bd207cc6cfebec97afb7dd7828e888b37e07cd" - }, - { - "value": "1058925563174688441621282816", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1022042685631599820357943296", - "unlockhash": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc" - }, - { - "value": "1049860973832366381262897152", - "unlockhash": "c3f72a1228967e3c780b796468188c83cbe769fc8f3bcfedafaf07bfcf25c9e92b5336e0752c" - }, - { - "value": "2632123915089834831471706112", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1058369051613007626969481216", - "unlockhash": "bbd27981d0066d6ff4ceb5effb49ebab58976d9b24703b5d2a2524532365c32c632f7e91c522" - }, - { - "value": "1421252990034568392604647424", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "1048361768049931802849492992", - "unlockhash": "01f289be0a90d6bc3fdde9c3510b26a45a1e322ed4290aea48245bc4738a815862a1fb818054" - }, - { - "value": "3789177938173852260767891456", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1022253046445248579454631936", - "unlockhash": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0" - }, - { - "value": "1102465956768997277762060288", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1096106774364140266007035904", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1034709754043684065938538496", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1193700129229247627949768704", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1035018634461433309078994944", - "unlockhash": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c" - }, - { - "value": "1016645434027684920470339584", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1370758370827299647592595456", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1097213198847825557189820416", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1076684199596072554018635776", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1038466417868408828340994048", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1089555060124496427474747392", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1254294036778602064632610816", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1394926893739885702116540416", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1617615430801813197652230144", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1254999023462660559174893568", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1125941113531509250071724032", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1712911693552572228804018176", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1018588692746971986577129472", - "unlockhash": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0" - }, - { - "value": "1176381259410928811634589696", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1152501411782976315582709760", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1409302587244094391650877440", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1207850242343603830829088768", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1090624002784771593431154688", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1218021187703912879583395840", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1101119191745394217260810240", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1006456383707894184737374208", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1056254627301955478651338752", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1000262934779987588317970432", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "1501065001975912322336555008", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2457825540930172972481642496", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8930037555857941903618080768", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "x4LD0ZvmpviK1ZP/ugiDhb7Ele29wu0e3ABsL1DDI25crKXZSaDDJwpWMPEUCXS5BipwR/cm5qc3l/iNiw/YAw==" - } - ] - }, - "transactionid": "e5a3fa561ed9306e5b3c7356ac65e09bfc301ae50eb3a6af77b4eb96827ffa56", - "confirmationheight": 217944, - "confirmationtimestamp": 1564366171, - "inputs": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5235eff4275eec191af707ef016f4e085e263c05218672bfb3358662ca3f7411df941bf361e6", - "value": "71029487107723352572254945280" - } - ], - "outputs": [ - { - "id": "a2ed2081fe79a66e5b01802dc98922f8a3fc3e10d0ab5b20e942be99c6433676", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1120331109114685820122431488" - }, - { - "id": "db99b227256a93788aae434d06312031af9a509ae684bc483a5ba2c3e5595726", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "e2e009cbf7a4598584cdd917479c174ad53c009f9f4477e393a6e6804278a312fb67bf889712", - "value": "1020333210290437356874252288" - }, - { - "id": "8c0427f54a93ca39f76644a54a8a5b092cbcf906c30ab1dd7ee435f1ceaeab4b", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1024872769276144043838472192" - }, - { - "id": "e28f8ebc16e49f54643f50a4fc39dd606fa54028b90e59677f2985ae6cde5eb5", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b61444705b40f45086eb61590eeea97fb193735169ba9dc8415e389d67db1d4f8f77234469d0", - "value": "1470324719434935005191602176" - }, - { - "id": "f343bcfb1434e1fcc64591140bb70ab77b49aeb4124331042352c1b0e3c56ba6", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1029313198510001106261639168" - }, - { - "id": "d89089815da9308b068781c798f179b86f0024e560023357eb856efe5b330b0a", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1116224254039193406297604096" - }, - { - "id": "de4fd4b8cb68a8d16eb7addad62d816dc25bd7eeeb5968ed9dc600116e5d937b", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1079538949182371198899585024" - }, - { - "id": "b29a7becdc66d7d8f84bd39995ab55e5edc622a234947783dabecf5b7d8aeeb2", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1206483259024042343803125760" - }, - { - "id": "3859ad0d651edb7f52fc57e5ee4b3460fd411efce5a5c051714881d826acbf0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1014359992341827931676344320" - }, - { - "id": "ea2982aad89cc0595f6c56ab14c53f28960caa149e59bee4880e574e97ddb433", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "a08f50f9f7c4d31ff04da063346cf0986f3353bd207cc6cfebec97afb7dd7828e888b37e07cd", - "value": "1006794972121764260961648640" - }, - { - "id": "7321095f4d095d5211f5760313d6a41c83a318fa61c647494d091e4f16602ab0", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1058925563174688441621282816" - }, - { - "id": "501826028c5077edfdc875f30a5994f86c43cb6a521a2fe03c3652002a51d04d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc", - "value": "1022042685631599820357943296" - }, - { - "id": "f8c332c005b009a38cf94128aef56362f0549b9230033fd75139ed341d24ff0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c3f72a1228967e3c780b796468188c83cbe769fc8f3bcfedafaf07bfcf25c9e92b5336e0752c", - "value": "1049860973832366381262897152" - }, - { - "id": "e1f8f7888a58415c21513c11ec9ad8e1efeb747a26ea1cf916b681fedb290316", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2632123915089834831471706112" - }, - { - "id": "1e52614bd722577e18167bbb570205238b726d5543cae9bbf7ae11f671310f0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "bbd27981d0066d6ff4ceb5effb49ebab58976d9b24703b5d2a2524532365c32c632f7e91c522", - "value": "1058369051613007626969481216" - }, - { - "id": "6b5a4398cde6321351b22a57bfbc6a9921e859d19d703d447c6a37446c22fbef", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1421252990034568392604647424" - }, - { - "id": "6891fa53663cce6e88b6ad5f78e3f2f16248b4ffa8a162b4bf6906b9e2100663", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "01f289be0a90d6bc3fdde9c3510b26a45a1e322ed4290aea48245bc4738a815862a1fb818054", - "value": "1048361768049931802849492992" - }, - { - "id": "111b4f2f1dda2afd55f1fc6bd063b5a7e34a2b214d4c6429ff94d488327698ec", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3789177938173852260767891456" - }, - { - "id": "93caa987734ab4eedb7e29c7a4005af2702af57d9f86e84d581306b419f07edd", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0", - "value": "1022253046445248579454631936" - }, - { - "id": "47b7ed9e196b2dc7dbe5b5104beb04fc8153db289fb7ed60b54bad4e0ef88ee9", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1102465956768997277762060288" - }, - { - "id": "b1076cfb925e8ce0e279fa317d3c67da3e89532a5f5432a26af43509a54964a2", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1096106774364140266007035904" - }, - { - "id": "2b1713f269c4b840952fd8fcb83e4b087dd5df6a494a4392bad8e2e87dd31b69", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1034709754043684065938538496" - }, - { - "id": "2a8e686863c593d55d6f9db6c7e2a90937315b1b0773e0597e951a81caa4dd38", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1193700129229247627949768704" - }, - { - "id": "c6ec13a299f2f88f397e68067b55d0e06513f27413ecb53968101e330c169c35", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c", - "value": "1035018634461433309078994944" - }, - { - "id": "64dede4f6bd5329e0d5e1860edbb7dfbc1ee503a00c408aad9cf781ca2f96a0e", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1016645434027684920470339584" - }, - { - "id": "cd6541e8f5b648ceeac1fcded2dd3bfa106c8d5f26964b9d09941ca88029633d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1370758370827299647592595456" - }, - { - "id": "c5073f9ccf4f0eb5c6d878d0f404df9a259d239c9f515f374abb2893931dec50", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1097213198847825557189820416" - }, - { - "id": "c6ee1f017b491a271a9d78ae0db2814ba82ace32a6191de38fd9efc576fde91d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1076684199596072554018635776" - }, - { - "id": "57c369b6d77edd0f8d14be684263ac54a874070b207b6ed8aacb188c4c4294af", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1038466417868408828340994048" - }, - { - "id": "3d25ed18029afae1788414f4004ec221b2e1b50a7ba7e9f967824fe3410a9864", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1089555060124496427474747392" - }, - { - "id": "0268f2fd362f02f0805091fd06f31c179e4db3d2a387160bcf5088bbfcd34a01", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1254294036778602064632610816" - }, - { - "id": "d78b6f9e5a7688b63bb6c01ad62998a726bb8eaca7c5d27d54e0892914da905e", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1394926893739885702116540416" - }, - { - "id": "d947c088fd0bf4693aee94eea5dee252b2763f2670a7ee815c39e5e050a70802", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1617615430801813197652230144" - }, - { - "id": "3abf2aef0d703400eab439d4cc3f9d5731164130afc4b2a592f8b16974cb995d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1254999023462660559174893568" - }, - { - "id": "ccc3a31a5e6fa2eba74388cda5c9b75a4eac1e25813ce69fd7124a29c6a619c4", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1125941113531509250071724032" - }, - { - "id": "a8b115161d92a102ca60b481691671c0cd38d1b0a490963ef41ed350fe36d508", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1712911693552572228804018176" - }, - { - "id": "bb523f5debffb43af1ad130bcf543e9a303e18e0560941fdc4a7f6689b608c42", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0", - "value": "1018588692746971986577129472" - }, - { - "id": "ecc9d852dbba251ed74908679c8841deb90ce4dbf93deaac858cdf3ab9be5733", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1176381259410928811634589696" - }, - { - "id": "3daf35481e3fdb1bb8bceb7828cf5c43b82211a41e4d0e1d0362d8d1e7fb1a83", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1152501411782976315582709760" - }, - { - "id": "b9cd8596d8369bbeb26f83c26ee92379e44f4c7bd4e4b36daf5460d6535d9131", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1409302587244094391650877440" - }, - { - "id": "135c2c4fd8c5073cff2de28a85a2de845bb7893aabba13647e33daa4220ce701", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1207850242343603830829088768" - }, - { - "id": "bcfd52a97d69fe519dd97213e7bfbadd16c6bfa35beacca5822a343a8ec4a0b5", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1090624002784771593431154688" - }, - { - "id": "9d0f811c04f7fbb7901068e7bbb21c088fb093c18a8bbd8bc938299574d4a949", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1218021187703912879583395840" - }, - { - "id": "51ed6ca12df368f6d2b236c56d47f915fee5005d968968c682e0de9cd2603549", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1101119191745394217260810240" - }, - { - "id": "b9b8ec58be33aec642452ffe952f26491fbffb973e985bab7156f30ed856f30d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1006456383707894184737374208" - }, - { - "id": "4515769e29fb5d74a0a5fe1e407f896c00eda420f33e14ede8f49db198e4c002", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1056254627301955478651338752" - }, - { - "id": "83481c046c6a36cbedf41495128641eb07ac2b68b4c0b1f63e84c067d76ba5b8", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1000262934779987588317970432" - }, - { - "id": "0cf3601181f3c57009b9394e6ef6f0e96019763d6df0b4ffb0f7b7ac1790b337", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1501065001975912322336555008" - }, - { - "id": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2457825540930172972481642496" - }, - { - "id": "2bbd68ec995121e083937450449ebac9f067c90aaf628c62f85691aa16981e3d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8930037555857941903618080768" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218088, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "sF5xB2WvqgF1JcAKux2ImYRiQjD1C+LB3ycApNdmLFI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1012873762248010370125201408", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "1354332852437580418331967488", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "1198361091479090756543545344", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1063043053006930492938747904", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "4030712836195064318498177024", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1003909922963141961472442368", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1027539442342307284090159104", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1001041701991215833699483648", - "unlockhash": "5593d3e5b36074b24960409a33d8162fbd37aad90c29a851f9f3c189b64601fa3622f285f96f" - }, - { - "value": "1067113898027109134894989312", - "unlockhash": "07d2d4ccb058ddd388ebd9ff908d1b79d571adebd0ff9562a35968040f42aec835c41f3203a0" - }, - { - "value": "1032439911446270824131133440", - "unlockhash": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408" - }, - { - "value": "1209846790884468005031903232", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1068924130905609336327831552", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "1010957476838871153809653760", - "unlockhash": "eb4b9467ea953e0c25b7f4556905402ed63295544f0f0966c5fe7523ca137c87998fcda3dc57" - }, - { - "value": "1130339656246114012892889088", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1032574584726284103326236672", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1051220993106308741670567936", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1135560146600562702963179520", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1020394603875863209824485376", - "unlockhash": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d" - }, - { - "value": "1075548054817332965983846400", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1271103798301636220495593472", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1017812174966284455391526912", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1051727466748551501219627008", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1036573097991397839584198656", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1185594702293140896360693760", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1093006746700423011184345088", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1038788658371745711479586816", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1157810315702297643709366272", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1246909376898063709937336320", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1207702275959864868382703616", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1826316696109798043333689344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1038611764057362054335430656", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1064473541766709623380901888", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1055713972907782173010952192", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1006084806764243778394619904", - "unlockhash": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f" - }, - { - "value": "2604748042541934141308403712", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9418193904293247927256612864", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1022252749909301834216767488", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["193200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "z10kbJXTx0ygRhtMzRNXvaPnzVTaVqW+x9/xruLXXIaDy2vVyX400AYDEyHriwhE5FV0AAQk0c3nZ7FX0eVcBA==" - } - ] - }, - "transactionid": "070eee7b6f3a11f1c8b25b3606343b6e3b9f2c9a34ceed48f8e70f7b02484ef6", - "confirmationheight": 217948, - "confirmationtimestamp": 1564372317, - "inputs": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d1129389c6e33e7fa6dbcaf86bf33fc1cac567c385952126ea2546c726d8537b07bddd0acb9", - "value": "53870352202421921059538796544" - } - ], - "outputs": [ - { - "id": "8f3d366cd7c0fdb34b384be6addfb92e2ea7d7d90191235ff834bc3425f0ec5d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1012873762248010370125201408" - }, - { - "id": "2a0c076a9bcd6c6fe844cf873074739bb158f0868267d6ce343a88b552a4be0c", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1354332852437580418331967488" - }, - { - "id": "4baf11bce591fde0687db1446aa56c25dfffb91c6aa8efdbb3e1478d1b253704", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1198361091479090756543545344" - }, - { - "id": "d7b18296c5fe8c021389e15a7c4c88c8232796908b89475aac06b2e5917f2fad", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1063043053006930492938747904" - }, - { - "id": "7a71fc8ad75421e6c48893579dab3511fe9d43534c35df1ea56229f9f511f9db", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4030712836195064318498177024" - }, - { - "id": "39e793248acc4d6909eb3a8e882930a76ce51259689932715ad9ddee203b683a", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1003909922963141961472442368" - }, - { - "id": "de16f6468d71d4e773e19ac6d4854df185822f58b2a6a5209ab053d9812a57c1", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1027539442342307284090159104" - }, - { - "id": "3a53163bc044c9ad19cb7ae85162091e81a815e0c12f0d152397ac7cbba39245", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "5593d3e5b36074b24960409a33d8162fbd37aad90c29a851f9f3c189b64601fa3622f285f96f", - "value": "1001041701991215833699483648" - }, - { - "id": "a55f1ca47f26d6ebee387ca03f6cdcb6b341d9cd33a3d41a0747480ca8bcf7f6", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "07d2d4ccb058ddd388ebd9ff908d1b79d571adebd0ff9562a35968040f42aec835c41f3203a0", - "value": "1067113898027109134894989312" - }, - { - "id": "ddf33ed0136d0ab13bd082669dbbcd2eaa09247a183269e2fde24781efdbb87e", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408", - "value": "1032439911446270824131133440" - }, - { - "id": "a89df42c650407870a2e5c4ae7f5f345febd6e09e0ab687a3d61b35769adf448", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1209846790884468005031903232" - }, - { - "id": "555e97a88d885995ab82f0c22b33d27978d5785b13237113d5ac6a8c2a0ace19", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "1068924130905609336327831552" - }, - { - "id": "7a2e14b48cdcd3bc28af13714a2ca1da26a7be947523046f6485e832ee1cb37c", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "eb4b9467ea953e0c25b7f4556905402ed63295544f0f0966c5fe7523ca137c87998fcda3dc57", - "value": "1010957476838871153809653760" - }, - { - "id": "9a0b871c002b2297001ce38b55ddb178961d674aa027fd11fffbf7d8bbd7fa99", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1130339656246114012892889088" - }, - { - "id": "e58337d55344631c0cd68dd94840a1fca92f9fbb425e1623fddcabff51de388d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1032574584726284103326236672" - }, - { - "id": "80b543fd787b4825d39f3dcf7bdbd432941cbc995773fcd043133149024b88f6", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1051220993106308741670567936" - }, - { - "id": "59efa5da629bf3f899e19fc856546c5aee2f33e154e80f799e80a368a4fcaa61", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1135560146600562702963179520" - }, - { - "id": "81183cca5785fbb5c31a629db5136742a00fb22cf8e9beb644aa9127a6da9fbe", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d", - "value": "1020394603875863209824485376" - }, - { - "id": "2d55156f0a5059ba758eff04793c7ff5899be0f3e57d3cbb5b4701b3a3dccd72", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1075548054817332965983846400" - }, - { - "id": "3687226172de65e91632a171d0741195ffb3540d2694ad8d1696acded5aa0e83", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1271103798301636220495593472" - }, - { - "id": "a2d62102e695b58e5351ed53352e4fe89aa26e7f109aee285d2c420ca35cbefc", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1017812174966284455391526912" - }, - { - "id": "df53472ecb29ca3c75473112045ca512dfbc6e6a007334665adf0a4b415a2373", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1051727466748551501219627008" - }, - { - "id": "a917d361bfe909c9a10e695d089c972a21e1bed74889b908f41c856fde7ac521", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1036573097991397839584198656" - }, - { - "id": "bbc8f23ba1bc7391c265b9e386266e7ce3a8b4b8e0202cd4968742c6c1c7ae0d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1185594702293140896360693760" - }, - { - "id": "afa44c659e6838cd536aac6faea0463565035ff42708bccbb7f5be04e575c212", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1093006746700423011184345088" - }, - { - "id": "ce6f4292dc5736aaa7e235bced19fca6a55a3ede88ced7ebcc331cd51ab3a3c2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1038788658371745711479586816" - }, - { - "id": "3b52a9acad8a58a4a5e6f7799e5847a92759a6cc54abb3cc93a6b11510266b6b", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1157810315702297643709366272" - }, - { - "id": "1d955cf5ad9fd911a1c82960ed66d33b3f5ae3a76d9114aec0d53408801214e2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1246909376898063709937336320" - }, - { - "id": "8af6ae65a392ba4b8f49a9112bd9d08a0bf68d096257ff35ed239bac32361a73", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1207702275959864868382703616" - }, - { - "id": "01af1b274e060ff66d88d5b7b89e8a6cd0bad5cb23be8227aacaa4e7cc8c4222", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1826316696109798043333689344" - }, - { - "id": "7d58809a34a068afab41d31aad092611506044004148d2424891551cf02df695", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1038611764057362054335430656" - }, - { - "id": "0480a74b8f59bee2fd69d0c8dec1745a9e353e7c6b41cf8adf5cb0e8a1af4acd", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1064473541766709623380901888" - }, - { - "id": "56e0aefacc35f9b87408664aaef76b5bc1ea27c63e8e7b2d6d9c3f3538bf11d8", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1055713972907782173010952192" - }, - { - "id": "f4b16533522d658065de042131b73a93061129a53ca6ba2bd450691182a849ce", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f", - "value": "1006084806764243778394619904" - }, - { - "id": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604748042541934141308403712" - }, - { - "id": "4ddd21823ab417594fbb0e0fbcd8cea3888e5ebc210e98cffa210e012fdeeaf2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9418193904293247927256612864" - }, - { - "id": "59f1b0706da858c97e5ae737846d0b556e839b57c0fa7da863fcf44e9bd830f8", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1022252749909301834216767488" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218092, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "193200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "rJHiivveVuxbUOGfR0MvEq23FybcVMGN+1KhZq95C3s=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1032474076144083393257029632", - "unlockhash": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c" - }, - { - "value": "1060698617241292354596896768", - "unlockhash": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f" - }, - { - "value": "1154747214708898324917256192", - "unlockhash": "75c22739b3a0fef97d5ef85871ff02631bd33e792049ed6c9b10a9bf64e2bbbef3acce5b0f3e" - }, - { - "value": "1490728286257166371364274176", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "4022018644848581265651138560", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1039415610367159168067698688", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1054516142974615534164901888", - "unlockhash": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76" - }, - { - "value": "1018527252004404598833856512", - "unlockhash": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57" - }, - { - "value": "1127931132090180219395112960", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1228649093341161138752061440", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1006995224152919669458108416", - "unlockhash": "61dc57c76b4ed71ced11e2d661a65c954e773e20966a6dbf4f86355ca2b1b315a0b7b6ff1c39" - }, - { - "value": "1128631273403475687839891456", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1148540460542830796334956544", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1031393957590228095170117632", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1102583480225364236213157888", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059102565903018629750390784", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1128039731351960872441348096", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1314579257823032337957388288", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1173864765766146715297251328", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1379722520518350472435728384", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1127279613699365492337410048", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1693875595978618911288459264", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1306868835877015024699441152", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1736777819192677359895445504", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1148255894405684767778668544", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1175655178858417460036501504", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1064803401963968074492968960", - "unlockhash": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed" - }, - { - "value": "1416327999532888279211835392", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1039657837509062687898992640", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1151892414382182511543320576", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1216508577334828797747003392", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1097152749437081549274218496", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1016908839412792885477048320", - "unlockhash": "e745eaf761c44f16ffa820db66316fad1fd052d61bdc5a3f3f32f52237d1516ab8755a03d6d9" - }, - { - "value": "1514918458889780919918395392", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2565575982412103390584635392", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9235238813245678761677946880", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["189600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gjsTb21EfKhcQ/W8r2EduTl/aMK6y9If9yODt9UTreqRLY3BXF2aujOqkEZvheDn5o1jKTObPtv0a/vOKxezCg==" - } - ] - }, - "transactionid": "d2a5b57a635bec91e395283b716b8ff6f78fb51e4abe2633d13046188c298f7e", - "confirmationheight": 217950, - "confirmationtimestamp": 1564373334, - "inputs": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5ca905474656d9eb93d7b0e3c07244a8ec2e7d83f13a16611174da39c9d2814763bf6f2a04d4", - "value": "55211046919387016755760857088" - } - ], - "outputs": [ - { - "id": "8b8277b210109aaa85a5e79d6d353faa1a0067bb307a40954dabf15b181b3513", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c", - "value": "1032474076144083393257029632" - }, - { - "id": "cf5f0b8c515aa64e0bbefc967ce2c5ca8bf51e206396050a1688246ed7c803d7", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f", - "value": "1060698617241292354596896768" - }, - { - "id": "4447878f17f37f251fe59061348bcde669b50d5910d918914a83ade1aa3df5f4", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "75c22739b3a0fef97d5ef85871ff02631bd33e792049ed6c9b10a9bf64e2bbbef3acce5b0f3e", - "value": "1154747214708898324917256192" - }, - { - "id": "30a869a6292c60855ea6d2e66853032a7984a47b292fa47b63d5340e617343d6", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1490728286257166371364274176" - }, - { - "id": "bb49104d64692f28df81aa16c8438488cb986d51689c555c1e97b6a61416d8c5", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4022018644848581265651138560" - }, - { - "id": "603c3e5caac134b433017701c4e5a5f723862d4374c683062e2d7f6ffb618d81", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1039415610367159168067698688" - }, - { - "id": "916ee822786f4e6e5dbd0081174da0b261d543ee346c75cc3a31ce560008a70b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76", - "value": "1054516142974615534164901888" - }, - { - "id": "c76f579ee296779806156b23ea8a30a3c6de82a86f42f4daa1dac867176e94f3", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57", - "value": "1018527252004404598833856512" - }, - { - "id": "9cbf0c9c725d90640bb8dc79169be69bcdd94e1a21c6a579875a2ced8bcac980", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1127931132090180219395112960" - }, - { - "id": "82843e6c70a12bdb3ac4b1ba0d536e22c4833160310956c6bccc32e336030c94", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1228649093341161138752061440" - }, - { - "id": "17f47986d2ca394248ec631582c91374b398d4f2f48b7b431eb2de00c56c2ca2", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "61dc57c76b4ed71ced11e2d661a65c954e773e20966a6dbf4f86355ca2b1b315a0b7b6ff1c39", - "value": "1006995224152919669458108416" - }, - { - "id": "5838a97f71c81ab47c54f250db9ebc4e6e909a8ee51f1cd037b9d14e3d7f4b16", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1128631273403475687839891456" - }, - { - "id": "3df3b9f71d31db42cf4dde78cec81f35ac1dcb481367ccd3dd8c146ff98a6c21", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1148540460542830796334956544" - }, - { - "id": "cbc45f51dd0b07232f88d59ce47d25dfe9dcb22a11ca27a4a8caf0c30a12348d", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1031393957590228095170117632" - }, - { - "id": "9b49e0b221ee1adc936a32cf77e72acfe9d00851e235994b56bbb91c81fd26ba", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1102583480225364236213157888" - }, - { - "id": "c56a42bb586f825302515d5608ead5ea9d1d995c5af66f493ed855f5a32a501c", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1059102565903018629750390784" - }, - { - "id": "76915844e81166b2beac4e79147ae3ae4e75fe8425ada2e6c80c56d70d880e5b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1128039731351960872441348096" - }, - { - "id": "623ef8b98e89ea0a5ecdfb0a5b018d0b545cd6dcdb930b9d70f178dc1e729e7b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1314579257823032337957388288" - }, - { - "id": "407d09d739deee9bffe27f6e0e2ed252a829cc02305baeb61c0517eb9cf47f90", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1173864765766146715297251328" - }, - { - "id": "d9fd49681816bd2a34238149dfe59d1b7052fc5e55d5ea50619a6a5c08816fff", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1379722520518350472435728384" - }, - { - "id": "f690b696715d18d2c006d388dc1eab0ec6158c003399509134c38b3472998048", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1127279613699365492337410048" - }, - { - "id": "83e6ea0c8b8b1eba906b2490ecec1dc368dd716aff10ced10cf7fcf35766a17e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1693875595978618911288459264" - }, - { - "id": "f5d1318f2aa76f010a1225de51514fc3e702ca077b1ee5e84924cb92b8cc779c", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1306868835877015024699441152" - }, - { - "id": "4b6fd204100a27d57204548c7aafaae57433e439885eae2a1933949128854da2", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1736777819192677359895445504" - }, - { - "id": "1af1fa0b46c55b933a529e9f6b6f4813c55bbbeb19b243b42721a1f046f10a32", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1148255894405684767778668544" - }, - { - "id": "194fadd85336298fcb4980b4fc12769c5439828fde5c4bed5f0f8719132e5fc8", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1175655178858417460036501504" - }, - { - "id": "228ed9415b31a4e6684761e39d0439ae51cc5aa18235f8dc59153c37145ba1d6", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed", - "value": "1064803401963968074492968960" - }, - { - "id": "bda797fbac5733b49fc816e4808c5627de85a4eee9cb08f53b8b9b50c1afb18d", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1416327999532888279211835392" - }, - { - "id": "50c16ee98c94d03a486b73cd7c318761aba86965c4747c24a8940a3714abab0e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1039657837509062687898992640" - }, - { - "id": "317d0502114c724f5c7e19a61da20e0a1e7b09fc61883b0524022ee214abdee5", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1151892414382182511543320576" - }, - { - "id": "71279cb7f4c3daaf3358845c6b24e5f33e33cda8980a38778365ebc669b93419", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1216508577334828797747003392" - }, - { - "id": "22865292149842254d845d8302fdee9aca7d709d1e5ebe1428b62e6dd7c3ef4a", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1097152749437081549274218496" - }, - { - "id": "391a23532bb53a6a60e8617d6c12f9cad07b8ecab5a227aab8e6ab5276a956ec", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "e745eaf761c44f16ffa820db66316fad1fd052d61bdc5a3f3f32f52237d1516ab8755a03d6d9", - "value": "1016908839412792885477048320" - }, - { - "id": "085ba78876a77a365f33ce426d3a46f3089c0aa9f59691b9a527d7fa5d124fef", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1514918458889780919918395392" - }, - { - "id": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565575982412103390584635392" - }, - { - "id": "939f82101c08aeaa420b8ec463db86bbc3ab815de111e838abe81e9602f2ec69", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9235238813245678761677946880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218094, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "189600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Y3AubnqzpwtMBcesEgCdeb2W75Pi/Br3Fm2C/yu1dqw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1015523576760697551430090752", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "1042509012239270891495620608", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1076861108568679627845632000", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1132139477607903864149770240", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1080452978676376549987975168", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1056470188457650160000008192", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "1084752482350001007275802624", - "unlockhash": "b4f3c8897699e1c263ba2bf46cdccd45cd4f23cc79a7505c310b285f23ad4aee4970dfc13bbd" - }, - { - "value": "1067630882718074936673173504", - "unlockhash": "0a6b40fcc0a0170b4cc3a0d84d06c9db36b286b831d16970136e1a507b05d19d55239eaf4ae8" - }, - { - "value": "1769023379916075822594654208", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1007378487108126180033822720", - "unlockhash": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207" - }, - { - "value": "2564169243651529866070720512", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1152070341841119266124070912", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1060605954811909432148492288", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3835181545664268844033638400", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1086258590760870433231470592", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1015935325660315423007670272", - "unlockhash": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce" - }, - { - "value": "1283853996297244872717893632", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1067847066201208451107307520", - "unlockhash": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357" - }, - { - "value": "1341472875292496924553248768", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1056539794111095522838183936", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1090950582155312727117004800", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1031175568316229176026726400", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1166927427248429245612425216", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1006517419798194847880413184", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1291164597272727908079632384", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1006645080961279944036581376", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1016012632258998901025538048", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1007994043260509378711339008", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1157106974101072242699665408", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1166893758160981756812984320", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1227060660341485714433376256", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1188815927139859729634820096", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1902355424082529485565460480", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1061214587570432262466535424", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1095340611124135775786631168", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1042083579530673435329052672", - "unlockhash": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d" - }, - { - "value": "1252701651988686744542773248", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1088950549462786983460864000", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1150603800814266904309923840", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1146606769536088195879010304", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2463018105876406900742946816", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9289189680606770607316533248", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["211200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "O1QQ8Fm3lhAuafZMgFXdJcxHBc2K49vU77C+Y8120yGK/MV4Wly6fHiyQjenX1cS7OP/xiUGensbJ14Pz5o3Ag==" - } - ] - }, - "transactionid": "f4198f50e83c5d15d6d9ce756a20d6b27b23848fd9d8fcc69be8faf8b3170d52", - "confirmationheight": 217958, - "confirmationtimestamp": 1564377143, - "inputs": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "c25ee0242f8482a1fd2f4664b5153712802e56d8e29fa130240c18e91ee62af2c315b48efcfd", - "value": "61646216940302774494789484544" - } - ], - "outputs": [ - { - "id": "f4eb48632e9f1ada06261b372c8606aa9c7c2fd3913dac4643c8f776c070c13d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1015523576760697551430090752" - }, - { - "id": "339962ad5c737ba96c3b7000ae60c242276b012b403cac977762e00bbd40ae57", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1042509012239270891495620608" - }, - { - "id": "82512f3f8a82e3c2b418d4444fa334a417a7380ab1609eb4b2cb352d93b7a738", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1076861108568679627845632000" - }, - { - "id": "ed7f8c5833027db4da42d3fdf271807f1c37f54cd61a80458fff3d02fb7be571", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1132139477607903864149770240" - }, - { - "id": "4385ae9b160e729143a65f2bdd4fbc36201cbe4985c16e70df4e0eb74c5e5f73", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1080452978676376549987975168" - }, - { - "id": "f2270d1c2d8c635870ad934faa375b04c8009bf26be4a6616c33593fb8e8ef85", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1056470188457650160000008192" - }, - { - "id": "3faad382f6df0559817033ce67121b9e011f68ce82599db20dbcf1e420b79430", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "b4f3c8897699e1c263ba2bf46cdccd45cd4f23cc79a7505c310b285f23ad4aee4970dfc13bbd", - "value": "1084752482350001007275802624" - }, - { - "id": "e6a6eb4444270583c97e1c0ea6945d37fee181359761deb20e1d5a9cb7c34734", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "0a6b40fcc0a0170b4cc3a0d84d06c9db36b286b831d16970136e1a507b05d19d55239eaf4ae8", - "value": "1067630882718074936673173504" - }, - { - "id": "d9207ef15d42fd2bb02904a255d07defa3f24ac27bc9eda08792a5e9c12752ca", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1769023379916075822594654208" - }, - { - "id": "795fe99de4d6b0d06ac5a09cde608fdbdedfa8746ce8e187dda17401f0f4c1b4", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207", - "value": "1007378487108126180033822720" - }, - { - "id": "5dfc16ed3c5c1ce899cc3b5f808548112b13dbebc66ee7e0fbdef83287dc99da", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2564169243651529866070720512" - }, - { - "id": "1f3644bc95240c666ac8e6bad9aef31b63e67170315b3c27f97b0d5b17f8618d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1152070341841119266124070912" - }, - { - "id": "76ba7a6ce672658046fcb2c4ddfbbf1f24076c3666223903496435fbc2e7e308", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1060605954811909432148492288" - }, - { - "id": "ae5eace1c2d571bc88909ef9bc1d7c0969039dff5d5cc170eb8181b4576e8a95", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3835181545664268844033638400" - }, - { - "id": "7108b458a69622cf75fc14974075429199591479b16627c5665899c7a2692267", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1086258590760870433231470592" - }, - { - "id": "c1abd8d35feefc08cefb88ef903e054514bfa38dedb36c71742730fcd040298a", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce", - "value": "1015935325660315423007670272" - }, - { - "id": "23739405eb69dbf362a04fd16bb38831c319eec8a98ee696d466f2a3a64ec03f", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1283853996297244872717893632" - }, - { - "id": "bc282d540e522bb337c306e5beb8acf45d066e907337a973a549789c9ffb7048", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357", - "value": "1067847066201208451107307520" - }, - { - "id": "e3685fa256f77c8a6f03ffd9b2c81e8b26ba98f72f2b21a41a6fbc4f7b01e8a7", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1341472875292496924553248768" - }, - { - "id": "b44735697fa4e90c7795461ce9b0d0606b09348e414cd95460c262e59bcc2075", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1056539794111095522838183936" - }, - { - "id": "84c49e263ed023354cad08b8cf10e40d2d570918f6f0e0d41a7cac1a44f2b331", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1090950582155312727117004800" - }, - { - "id": "73bf2edece26805dae3773cd556650a04c247b5a2bdc3e6fdf98e3fff3ced66d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1031175568316229176026726400" - }, - { - "id": "c3ace16d8c6a3dd8f651371ab91fb60550baf2eb8f33cc3d1034708c396fcff3", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1166927427248429245612425216" - }, - { - "id": "c937571dd864240599dc65600fcab7eb61e82ff20a7574ad546e670451f861ad", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1006517419798194847880413184" - }, - { - "id": "c35e1dfb17c7d1c877331ad8ebe303ff2fa2dd0ce65f2a74aac5f00c55925604", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1291164597272727908079632384" - }, - { - "id": "f2c5107f05a3713692849617ce818b9a4446bf0779959b41df1c90df8833eab6", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1006645080961279944036581376" - }, - { - "id": "fb31bf4900bf27bfafbeb87321e43b7136773b2e655304d6382011ff78b2d361", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1016012632258998901025538048" - }, - { - "id": "17216f4492118cb8659aca1ba13b31eb4ee3caf38c0e23fcedc23687dd37c050", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1007994043260509378711339008" - }, - { - "id": "205c59ee10f42c1eb7e90c721e0cff8def5619f3815d82790c3319cad25175f7", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1157106974101072242699665408" - }, - { - "id": "ecb5e006d72e8dfca7db0120051db8eda6d7ef47f4a9a0ac240c8824ba7e7d31", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1166893758160981756812984320" - }, - { - "id": "be02b47c1fb5dfa85bd4630af7cee979a1e2a7b353421b5cd77c025a4b11c1bd", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1227060660341485714433376256" - }, - { - "id": "a58ee80b3e4a262ca941fd035b009549aeb40d5269295ad05f758d2d59b21e2b", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1188815927139859729634820096" - }, - { - "id": "a2e5536258ddf5d0bae6019d7ab14f4fbe963b48317a204f8c135b163eefab10", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1902355424082529485565460480" - }, - { - "id": "099872289e2b8172c2ad42f0990066b490b44d81fe4f8801a742cfa7df81b7d1", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1061214587570432262466535424" - }, - { - "id": "8b92253613aaf36600493880a35ed2522263ff388554fcdad3747d86cf3c03ba", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1095340611124135775786631168" - }, - { - "id": "6099136e786a3ff4dbe37728d685b7dc454d3357aca6a2f589ca5c6e7c6804ff", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d", - "value": "1042083579530673435329052672" - }, - { - "id": "7852d74248b508f408cafd902f38e8634355cb07f42d534629ad8aa1e186a132", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1252701651988686744542773248" - }, - { - "id": "7bb3a6c5fe0502b738a0889efda5bc666ff4a3db0e6b5fceeb1e3b2df9dc2fab", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1088950549462786983460864000" - }, - { - "id": "1d942941d2155246fdb7d4f934804d330e4a79d06c948c3131f57cbadbd27d0c", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1150603800814266904309923840" - }, - { - "id": "9fb31174f02ef02bb36e6da291c8a8a97a7dd138e35421dad2b2f10e65d3019b", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1146606769536088195879010304" - }, - { - "id": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2463018105876406900742946816" - }, - { - "id": "ca02e3079b5ded60f7e91faac30cc6b15882547ae973e12db705dca9da9c860f", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9289189680606770607316533248" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218102, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "211200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "+sB57PzMMbL1pa8afl9tirsQ8grc8LLEzR6qC12uEwI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1132173828365581994597810176", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1000558147213888539477934080", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1263729633102546796409782272", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1004474924095124472617762816", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1465239077152221086425808896", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1437142528565016146235883520", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1164251918516409043325550592", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1076683559043877638373638144", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1302903316649871235112501248", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1246334414463852216678612992", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1059459785758730390079340544", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1018735742056576180025163776", - "unlockhash": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472" - }, - { - "value": "1055414511436301084021096448", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1087287693542894512647831552", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1517295669339621091766697984", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2527370977241186333339156480", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "6279804937135407280368123904", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1200296098409439929374867456", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["124800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ngTAFc9aQyFcAJW6EUZ4dLE/kjG56Cm5bDOwDpMMx2190cUl0qOUJ880oJWJ+BS63xwTPi2PlsANL6iwDD6UAw==" - } - ] - }, - "transactionid": "db0c37bd0b6f3ce3aa08662cbf9e7fddaa3ec5f00fbdb119659c9a3590f4a514", - "confirmationheight": 217963, - "confirmationtimestamp": 1564381019, - "inputs": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d02436079d42caebbfea222eeb35d20f436630d7c32c370b61d22f5713ba04aab257b8b9465", - "value": "27839281562088545970877562880" - } - ], - "outputs": [ - { - "id": "b26a436c5bbacb0c9d4259fae3b4915889f1aec4a700d4333011d37bd067d9e8", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1132173828365581994597810176" - }, - { - "id": "2cd22bc3b505a89c876d05ed38726e0f330c00bfee6393d80b2d83b45d4c3f8b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1000558147213888539477934080" - }, - { - "id": "0fb9bae3760c2b3f7068103cdb67adbc5e0aa3ecd88b635516ba69365f0b9352", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1263729633102546796409782272" - }, - { - "id": "80cfcd98f188547a9620445b4aa24ca56de6bbb057ef8f82f7be6d0cc3e7ed8c", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1004474924095124472617762816" - }, - { - "id": "722e4a1837a264f1e8aeef8c15ea7b23c7b1f1a8bd3024f6ba46cb2ec7013f3e", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1465239077152221086425808896" - }, - { - "id": "657475cbff30445dacf1e1554f5a85970fe20c344db32081fd0ebcba95b404f3", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1437142528565016146235883520" - }, - { - "id": "ea68f9ad12175183c3f714655a924b7508c00f82302a51ba15a3d82e5727f352", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1164251918516409043325550592" - }, - { - "id": "eb47fa0b26d8611cb76cf62b7c569b823c3ff814db6a88d6e42f22239a0b56c2", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1076683559043877638373638144" - }, - { - "id": "416401f388dc2cbd037a3764cc4b7d27bf85b168c8651386abcdc9c3eb0a66b3", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1302903316649871235112501248" - }, - { - "id": "d56a7a0550579e36099011ca6697176ca5a5c9a8b4da0e45bc743845c4d434cf", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1246334414463852216678612992" - }, - { - "id": "2b1bc43689b1b4df2a849fdbae7780d3d5d9bd2b7c4d67ab4ae581b8fba9521b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1059459785758730390079340544" - }, - { - "id": "b63a17385ba747107ac101257f1bd86ba005c159f83914489750731b0313347b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472", - "value": "1018735742056576180025163776" - }, - { - "id": "18f92f793983fda9c8015427b1c7f3fdbe9e82417166a121944f4fcfafa01c77", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1055414511436301084021096448" - }, - { - "id": "758356e4d9a5a6fe69ec6aed8690dbd7b4bef058da7a55067d462e9c46646b62", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1087287693542894512647831552" - }, - { - "id": "c70ea4eabb664d5848ae98ac4594cacc19bbc92594ef0e6645efd81e29171b28", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1517295669339621091766697984" - }, - { - "id": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2527370977241186333339156480" - }, - { - "id": "c2aa3bb625a0c6abaec4d2837ee340ef3e985b559d50027927f04afb979d1e28", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "6279804937135407280368123904" - }, - { - "id": "17184cb7a5f62765f8bb94dceded72fd5c7ff56d8430ac15ea5e59762c246d36", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1200296098409439929374867456" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218107, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "124800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "+wg1aHl81f9DHwG25ejebUarp+VxP9QH56oONpg+OcQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1062308814388730615628300288", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1098087766461359431999291392", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1004141712888657407396085760", - "unlockhash": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218" - }, - { - "value": "1312939312507430200173133824", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1058898973135807985718657024", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1001484391203205508678221824", - "unlockhash": "028001a3c3770191bf50aa3f9db680ba091dd7b57ce9b56abd1611a99e0134896a0de109632b" - }, - { - "value": "1058723472389179782435864576", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1017730322850349758036049920", - "unlockhash": "8f516d2039b30f9550586794fae981f6ff26c863869722d52abd44ea3c90fe5b22699864e9cb" - }, - { - "value": "1115121874578194469364367360", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1034750808481857601313636352", - "unlockhash": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0" - }, - { - "value": "1002636938385747183474573312", - "unlockhash": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add" - }, - { - "value": "1072050662202294266642825216", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1188897362629356700695527424", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1102570184755559218222989312", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1082080331493870575678914560", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1929941554375461076782284800", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1014292449790342270956027904", - "unlockhash": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf" - }, - { - "value": "1148967949401593897431859200", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1007432075407379001875234816", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1002388670037410712038539264", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "2708825625783154638655062016", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9231321080376282941566746624", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["139200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9QP7gSHTCw/ljItKB2I/ufAe+XOsIpcIIpWlGTzYavnKzgDd4iS9eucw3B0nQNO3/0f4hl3A/PjtefET0XoCDA==" - } - ] - }, - "transactionid": "389eeebb1444a2a827e0abe7abaf86fb03489eceaef012950316773587741626", - "confirmationheight": 217968, - "confirmationtimestamp": 1564384687, - "inputs": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "89b076c6004c9199fec92a574170787e259a8d8ea19024094c96bc0e8a2f3fe180b4752f7360", - "value": "34255731533523225244764192768" - } - ], - "outputs": [ - { - "id": "84342f48ecf49a43ddfb00b0e29f7a8747ecd56f62e808024158f869d5ebadd3", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1062308814388730615628300288" - }, - { - "id": "9a92cad2dd8753a1d0ecdfb53ff7a2c72f2e04cf57a9b795fc2a9d6106493ac6", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1098087766461359431999291392" - }, - { - "id": "378524d7ead2abfd5c0a0c0f7ed100c0474cbe2d23acb0a313fe3b507be216e1", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218", - "value": "1004141712888657407396085760" - }, - { - "id": "0be2e11384826bb19b4a0c20dd52486e27c04130cb95abbe28ccb0af83f20243", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1312939312507430200173133824" - }, - { - "id": "3d6dbe76aaf48beab4832141412b6c593cef060a2040f33cfa24dc3cb2e7ef06", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1058898973135807985718657024" - }, - { - "id": "b3ca8b8b4fb899c20e3893deb124ac9b7c5f5ef8d04b971dd2cfab33aba1c760", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "028001a3c3770191bf50aa3f9db680ba091dd7b57ce9b56abd1611a99e0134896a0de109632b", - "value": "1001484391203205508678221824" - }, - { - "id": "ce44c3ea96e46acd1c0596272323dfce45f461afd84f6ade828fd27f93a0d4b3", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1058723472389179782435864576" - }, - { - "id": "4c8c9685c7b5409c6455ed0c08a0d08e6cebee7bd3a5795771462ee2ee1be321", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "8f516d2039b30f9550586794fae981f6ff26c863869722d52abd44ea3c90fe5b22699864e9cb", - "value": "1017730322850349758036049920" - }, - { - "id": "1f02a4329bb96cf5f2cb56bcdfd9dd51a9f8fca3435464549bbfdac465e2c8fd", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1115121874578194469364367360" - }, - { - "id": "5d285a3f08a5119a89a2a6d05ddbfa65fe078c4ab841551bfe1bedf1dbbfe6e4", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0", - "value": "1034750808481857601313636352" - }, - { - "id": "d1cd8dbf4c517a3c5f67927d35685ed0e882355fda58d9941c8fc678fb2295d2", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add", - "value": "1002636938385747183474573312" - }, - { - "id": "34175d8503b9f5148068697fca32f07f74d58dba580ec00003c7e2a748f298bd", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1072050662202294266642825216" - }, - { - "id": "86e8ada6aa9cef9a643b73cea0c3780d5d329934138b31c6c6494fee19603282", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1188897362629356700695527424" - }, - { - "id": "c1d072bee90e11cba7c94618091ccfb1b987460fb73099bfaee6dbff28bd7c00", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1102570184755559218222989312" - }, - { - "id": "e43439bfe29fa5a101418177a53958a357ab06f581983c89f764e2f4c8f6b91d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1082080331493870575678914560" - }, - { - "id": "ba1d6dd556f971198ab6f9e23918cb0d989b167970657cb00e639b3c3aa8da56", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1929941554375461076782284800" - }, - { - "id": "848bb4e3f6750fe868fc859e000aff62557d64473d842ea357d9a33fed9de176", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf", - "value": "1014292449790342270956027904" - }, - { - "id": "adb0a55815905dcf512a491c822c19895779d7193faf1bd1fc53ef81d9ad225d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1148967949401593897431859200" - }, - { - "id": "571a4db7182dd302d37888230edce04cdfa6696203760ede546bb1f756f04244", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1007432075407379001875234816" - }, - { - "id": "39dab4b211c503dd442b8ab8b1ecd078266697703442cf677737ff43cdfb2872", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1002388670037410712038539264" - }, - { - "id": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2708825625783154638655062016" - }, - { - "id": "4e4c3effa167d840c44f18e3526e384f03a77c8d3dc903f0c867a43da6612f48", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9231321080376282941566746624" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218112, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "139200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "7J2Obp5kInKWlfW1lgc9EkJlIdsk9nPNa81lLMY8uQ4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "2754777909852550911431278592", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["63600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gH1klaLu/Cq14I5e465bpUa1fNzmM7HZHZQm45vSTqcqkN5IMzy7FPQDqG1HuTwYgWaeLWhWLmpMixiMDsbBAA==" - } - ] - }, - "transactionid": "c54acac937c62f98d86a70ccc61aba0f7efcab7f89e491c6a7c7c745dd9e6850", - "confirmationheight": 217974, - "confirmationtimestamp": 1564388060, - "inputs": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "43b6c285793d1bbc7b5145561f6d14d99a65cc5041858e1ead7dbe1475a1c889c927a6b86e84", - "value": "2754841509852550911431278592" - } - ], - "outputs": [ - { - "id": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "fundtype": "siacoin output", - "maturityheight": 217974, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2754777909852550911431278592" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "63600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "5tYINUshkUckL8XwhDUsoBcNgPeLPu8lSX9Txdoh7uQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1045368802787382880652099584", - "unlockhash": "a5a4d9329a1ee389c7ab98f325e9d866f21985f6295b594e62f93e3de42f8b9849779c003853" - }, - { - "value": "1040553463621902635436883968", - "unlockhash": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9" - }, - { - "value": "1278589706052004874027008000", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1119589077742564605071196160", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1155300519500729219775594496", - "unlockhash": "cf063a7b3dfb1afd08c4e0b6ded4fc730c77ff9ca600ab6e61115c5e25571b21e70585fc9a89" - }, - { - "value": "1042397207270020299371266048", - "unlockhash": "6692c485e8c65a0e36fb3909cb55aef8d8b65f8d77018566c8a508e985220beb8fcd11ee24d4" - }, - { - "value": "1222148978493281700534026240", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1922923846861052918645129216", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1210311641960789616953393152", - "unlockhash": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2" - }, - { - "value": "1373343836240054341353340928", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2680181837842027864653824000", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1110815321086959831730487296", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1191501009624101528544116736", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1094323350050849293292535808", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3929971342783918768161554432", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1011954488220450209070055424", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1062286636202769122821931008", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1032401163493027106332770304", - "unlockhash": "e28b015bfc1536e1c4893b05240cde5b9ddcfb832b6fc95986d16163a1030e82c320839e2abb" - }, - { - "value": "1147964887580054445950500864", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1129923468761598939533672448", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1059110843146954121738059776", - "unlockhash": "b1371d297297d188df9f5231ce5589c5b220c3f440ff3a460a6ef55d5e8e60c6d5814ac8fbf6" - }, - { - "value": "1072950971103564882661408768", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1047362018936931214772928512", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1350551681713955645853532160", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1008786559356044869381390336", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1005533186681538955821350912", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1006799619542108439015456768", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1073885346683106493478928384", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1022746523261691458457632768", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1153613937459069052782641152", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1008858701756006559457607680", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1257203232741290236096544768", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1143517775012513112051548160", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1136718898475062909602955264", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1972391184407389326041677824", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1898889926520665886775312384", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1119508902749954503705624576", - "unlockhash": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0" - }, - { - "value": "1086116412563205307717189632", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1033596560825828163318054912", - "unlockhash": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1" - }, - { - "value": "1102848516675439833825542144", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1016909960971246940074573824", - "unlockhash": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0" - }, - { - "value": "1092970824259407349434548224", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1074157879129481975089856512", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1029217523906295736536989696", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1045304662381485391715500032", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "2796379239865750792785887232", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9481390618667595974974636032", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["229200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2VW0O/r/Yn/EpThMwreE62ftaWkAU6VNHlkF2ZS2G+PrKZ3MnwPQgGCsrv9VDran+PyljzcJLzGZsDDpIn12BQ==" - } - ] - }, - "transactionid": "b373ecd730ee595a75c49c9f1bb9260417ecdb43dc1acf62da14b0acb5dd5b74", - "confirmationheight": 217983, - "confirmationtimestamp": 1564391633, - "inputs": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2fab63f2a4293fa55de5e3cbd7513c49240833b12a0624e9325b92a2c74297ac7d61c946667d", - "value": "68899401294969125335078764544" - } - ], - "outputs": [ - { - "id": "6e95da47e50c16e38cf124b5fdeea6b5fa63e21d363a41355ce397e756c232cf", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "a5a4d9329a1ee389c7ab98f325e9d866f21985f6295b594e62f93e3de42f8b9849779c003853", - "value": "1045368802787382880652099584" - }, - { - "id": "52132eb2bdaf1468bf8c7997c3cb225406ab7cb856f49e18887f724e71d950e7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9", - "value": "1040553463621902635436883968" - }, - { - "id": "eeb844496c0bff53e139c2e1abe6763d083e2b322308e3069a3de705bb58dc71", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1278589706052004874027008000" - }, - { - "id": "7854290ba73a59b0e13226f285ed11864e45c538d3030fb6db57300a7051152a", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1119589077742564605071196160" - }, - { - "id": "0fc2a4d252be6e2066719114bb43ea2ff602d5491f50701f2b2ffa59a61e52a1", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "cf063a7b3dfb1afd08c4e0b6ded4fc730c77ff9ca600ab6e61115c5e25571b21e70585fc9a89", - "value": "1155300519500729219775594496" - }, - { - "id": "4ccd2c70390815d88a264c70a55df4febb45664f7b5398669eac092655f76603", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "6692c485e8c65a0e36fb3909cb55aef8d8b65f8d77018566c8a508e985220beb8fcd11ee24d4", - "value": "1042397207270020299371266048" - }, - { - "id": "1d38fd14ad9d16039b7b5925885a3434fbc66966ed1419691d6da5e3819cb754", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1222148978493281700534026240" - }, - { - "id": "f174d6371c934536318c1678277102795696d8e64fd36442333fd4bdd505f775", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1922923846861052918645129216" - }, - { - "id": "d70dd6c63fd3c93421a3f7e7eba10f991515cc801f17bff6f39760c5c6269547", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2", - "value": "1210311641960789616953393152" - }, - { - "id": "5c71665769be936555beff2cd8503463def56d22dcc41cf4662e2cf8bd9b148d", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1373343836240054341353340928" - }, - { - "id": "69d357857fb73f1b7c24cf70900671a74a073d86de19d4870a45e387846e9ac2", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2680181837842027864653824000" - }, - { - "id": "6e60c0dfc5f2b610c9fb2774d47e8128aa8a08cd7b2097a316b22cb2e7baf0da", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1110815321086959831730487296" - }, - { - "id": "5c4e9e477a05c4b18f1354f42f9f53de08c5b00294e23fbb3fea7a30ae2f1b6f", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1191501009624101528544116736" - }, - { - "id": "6ea889a850e052a8a4cfe1729b95e32f7c45a7df207a84645a2796bda9677565", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1094323350050849293292535808" - }, - { - "id": "3306d024c9bbb5e0096b871a486109e0768d3806fc1bd99edd3e12cf0bb721a6", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3929971342783918768161554432" - }, - { - "id": "e76407e313bb81eb7497b48590a6448325444f5d909a3ee4beae05aeb10efbb4", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1011954488220450209070055424" - }, - { - "id": "286a68620e12e3c2b9d7abe5542ea19bef36728461051184b8b19b2286ab2f7e", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1062286636202769122821931008" - }, - { - "id": "f3fcf4c46b61845d8dd24bf02feae2ffbb68d6aff745b428096653357bef5a63", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "e28b015bfc1536e1c4893b05240cde5b9ddcfb832b6fc95986d16163a1030e82c320839e2abb", - "value": "1032401163493027106332770304" - }, - { - "id": "3864c821ee8bd75af0de3496202c54bf6e61431f2402916d52a5ccf57365116c", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1147964887580054445950500864" - }, - { - "id": "5d7e2bd334886e775e02406925d7f80b30a9d767e05c6228f823d426471ae093", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1129923468761598939533672448" - }, - { - "id": "8f01e36e6f9ab2613c194c9b48e8c2822b29b4a707ee91f9ab3eccc4659922c7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b1371d297297d188df9f5231ce5589c5b220c3f440ff3a460a6ef55d5e8e60c6d5814ac8fbf6", - "value": "1059110843146954121738059776" - }, - { - "id": "02df802f862fc50887f86e4be346cd1ff028467455047efc570c6e361dcc3204", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1072950971103564882661408768" - }, - { - "id": "4ea5e96d68fbb1feecca1e28bed351934c01508384b4423b0dbb520b782c93fb", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1047362018936931214772928512" - }, - { - "id": "0ace380517e4906ca5bcbd69a90f1e52309ddb750a9e6d921392a5d695d6e7cd", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1350551681713955645853532160" - }, - { - "id": "06791ee6b2da902094ea0a22512f29fa00cad88cd367c551a9a7ad7b45b9dccd", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1008786559356044869381390336" - }, - { - "id": "b92b1f61f67accd767aadd2b6e477ccf383b11b36ce6bf05d7c9af8262ca7f21", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1005533186681538955821350912" - }, - { - "id": "76dbf61d7bef99cd31fb202c130c4dab34a010587559e988a43ada30d82307e9", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1006799619542108439015456768" - }, - { - "id": "684d43f690aebbc96471b62df5a754f72cd89b3ec703267ef983c73a2877eb9a", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1073885346683106493478928384" - }, - { - "id": "0d7e467554d45d6c537d25762946f0a0ee56aeb75b94fe0006b55048ec63c6ac", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1022746523261691458457632768" - }, - { - "id": "2aba987e388f1ff439733da531bbf60b5d0f7f59d660d8539ea63af3462a7cf9", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1153613937459069052782641152" - }, - { - "id": "9d7e883afb87ed4104ee5372254a91d0d03389baf2b002c7b0a6ef1abef76c9e", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1008858701756006559457607680" - }, - { - "id": "e30c4e333b47fdf0d122e476640298bfee3b457f3132033c0a7ce384d42bb499", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1257203232741290236096544768" - }, - { - "id": "ef98274254a4bdeda418079fe13123123a1e90ffaccd949d96511bff3de028cb", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1143517775012513112051548160" - }, - { - "id": "050f34b546762685466ba7ceafb2268fb8abd25493507aac05908f590a851ed0", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1136718898475062909602955264" - }, - { - "id": "0a78b46b007b9563f64a9eef20ac22511dbb991436c0f4aee14159c05829b805", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1972391184407389326041677824" - }, - { - "id": "587477b48d72d9515b49ba2a4012bb02a37241a9144e619c97b0438de665aae8", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1898889926520665886775312384" - }, - { - "id": "4751a16d001951031aa52efe547331d59844095ff20f165c6543d81da723ec99", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0", - "value": "1119508902749954503705624576" - }, - { - "id": "1d68d7fd2b0b20048e05f3560f65c9486143915e75d39e5ca681d67e038acd8f", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1086116412563205307717189632" - }, - { - "id": "b6fddf7e68475acfe75e279ee98ff2eefff8e69d8dc54f5b2f1b309b54779241", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1", - "value": "1033596560825828163318054912" - }, - { - "id": "5cf7f80615a841f30d54e1b89f3f560ac2c8b1997fda510d078a71f2ab9b3c72", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1102848516675439833825542144" - }, - { - "id": "fadf083437fe34da447af1f0d82a903d54d7f55ecf4e1b49d4f9d1e7da00c9b7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0", - "value": "1016909960971246940074573824" - }, - { - "id": "23ad1df111d43de93af0b41c6293923052a2126d3e1712663b86c44ae0611b83", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1092970824259407349434548224" - }, - { - "id": "ba142818da9b2c41660b4024ceeb9f0f07460726a51d522e4c4544c70a278808", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1074157879129481975089856512" - }, - { - "id": "fd73c8988c27468f7d0e5b4c63f2adbd205e10581804b085b44d7f805f85bcad", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1029217523906295736536989696" - }, - { - "id": "5a8ed47b84c55708d43d2884a4b33bb8ab6749a8831d90a92755016184de3cf3", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1045304662381485391715500032" - }, - { - "id": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2796379239865750792785887232" - }, - { - "id": "d815cbe0ee7e5c654e51564ee82160415ff0ea847e1f34e59d7a4aa39ccc2ffa", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9481390618667595974974636032" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "229200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "UZ9LOAzVahpOv1HBs5eXT0laU5RUk2LZ6EEzeF378WQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1310267100419902552606769152", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1065121775163428299353096192", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1139302549956267087268151296", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1012629498492793344225312768", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1032371103186572472893440000", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "1510608304861714111250038784", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2760143552510360494243053568", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3166317877433486151623229440", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1042082566136978687912706048", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - }, - { - "value": "1018576994374280576947978240", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["96000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "A6Yk1N5fSVB5ZQ0PildPgawB56P71/EeizgOKighUGpi+50huHJFC6hcecXht/V6bat+YKbipRwzwQd/GybbAQ==" - } - ] - }, - "transactionid": "6fb89e4a98a34b566a07108f97b39858a9e204d8c80a548eefad078dcd98ea57", - "confirmationheight": 217989, - "confirmationtimestamp": 1564395571, - "inputs": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "9b70d8da90a1d6e609bc07e82d09022dffe3e0fd172e3f0e595d2f11aa100045fbf71658dd10", - "value": "15057517322535783778323775488" - } - ], - "outputs": [ - { - "id": "7f5acc0dff692b0de791843f9fcd84d528376ffb5973f77cf5a23aec13f58deb", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1310267100419902552606769152" - }, - { - "id": "e8248e879e08e14fa8986868a2f25ee40032b842e5762d111d4b351a2c890cd1", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1065121775163428299353096192" - }, - { - "id": "c6f9d60304fe33aca6f047d7e664675b945f4b8106e671ba17c90b3186f5b6b6", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1139302549956267087268151296" - }, - { - "id": "175ae6cfbb8e2e1905a654e591497a9fa8b113c566f68ad1c16ec9d712d409a3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1012629498492793344225312768" - }, - { - "id": "bfc260ada1ea5abc8757a2d78f8b6e3d265aee9f804c62e08628672cb549bd79", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1032371103186572472893440000" - }, - { - "id": "930a79318930cdb3a46fc4b57599e7886f122088f8e7ba93e58e7a4ea0261ae3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1510608304861714111250038784" - }, - { - "id": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2760143552510360494243053568" - }, - { - "id": "38009ab5d94593c3a2bd44c2a8d6bfc82047433e23c4e1d652bdae945f0d6591", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "3166317877433486151623229440" - }, - { - "id": "40b3188aa7db25cd994f93fad813672fec565fb3de68b68a68c3d34546f39e69", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1042082566136978687912706048" - }, - { - "id": "925f54d8b5b64ffff96c99f74444135658199ea4951d06552945d47bb926bd23", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1018576994374280576947978240" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "96000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "OHmzMz5Tji1WCGS0bDXJkgK69ucZthL+go1Vx5qaiSc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1079826793684562970337345536", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1147664433427083780610326528", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1009250859743640898219409408", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1028432362581446228152942592", - "unlockhash": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0" - }, - { - "value": "1034594835517784751307669504", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1152807551939009036847939584", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1099741811440620336310550528", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1284679685779857510347309056", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1066930861609483023481307136", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1034141593731074114094366720", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1000621839377398086555664384", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1048147274064332844864307200", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1192394994850280336792748032", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1138379986837450538746511360", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1007626065849784348416573440", - "unlockhash": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017" - }, - { - "value": "1182504776340197973801566208", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1008047945743236717564919808", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1816084125978513348408377344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1373995009057331323559116800", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1040201633925760157298098176", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1229655093811018070688268288", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1026920011072794811882012672", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1002535943929784339407732736", - "unlockhash": "03687b56acf5fff6701bd49508cd857877ab26aae6de83d8cbe0c679116e0b36a0d1e771d546" - }, - { - "value": "2724215459135375404118835200", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["146400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "YhC8Ai6N96kxr5jrM7s8J3gxMlxAOmRava6G53yA0jUVCIm3hZ9RsTTj6NcA1Vo8Ae+wL1mFoyBVlW3p3R6XDQ==" - } - ] - }, - "transactionid": "d94c0f5aea2143ee3efcbbba2be60662f6e15342ff3b764ce4ed2448c28cde1b", - "confirmationheight": 217997, - "confirmationtimestamp": 1564398855, - "inputs": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "617665eb964419c10f5de6092a53f0947ea57244cfa89f0d4d372eb8a4c7f68f9279dce36b9e", - "value": "28729547349427820951813898240" - } - ], - "outputs": [ - { - "id": "34bd8dbb1e389b7ded34427763daa069f4dd528bd5e1f5f2b206d1c7045b743b", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1079826793684562970337345536" - }, - { - "id": "614630e9b6fdd9f2c0bfbff0a66c414dc83d5b1634fbd508607980ee977ed97a", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1147664433427083780610326528" - }, - { - "id": "fee8d2d585332fa187da937e605c00d4dfa3987a319edf0e40a8a679c3c83d37", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1009250859743640898219409408" - }, - { - "id": "337bf46403aa7160d8cce79b139b1bb6f6334924652833eeb8183906fda55f96", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0", - "value": "1028432362581446228152942592" - }, - { - "id": "1decb0de54c50c2aae2fc5ce21fe467a0f93f4cb836ad605c6b2ebf5d613a54f", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1034594835517784751307669504" - }, - { - "id": "d99153b986f5b0c2857b60d5d50714e92bdb257a42141a47f9be1335403eb463", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1152807551939009036847939584" - }, - { - "id": "d4a412579e80a736521e3937f03d2f666ce0cae02e3ebc66bbf8536c3e503b11", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1099741811440620336310550528" - }, - { - "id": "4883bd7b43dbb4b9cf68397e14b334acffd4e53bc0ef4ef605b4d2a20742adf2", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1284679685779857510347309056" - }, - { - "id": "77f1ceebb6632b138466f2ca8078b0340a88be59f5cdae20387d2e3118b6beed", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1066930861609483023481307136" - }, - { - "id": "52b405699f374c13c49abddae29bed4fba168f22e8119f72b502a386658ba87e", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1034141593731074114094366720" - }, - { - "id": "04761e19530b2221c18e1826ca55bb3bc047d248cdd439725c25598cdedf3e12", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1000621839377398086555664384" - }, - { - "id": "6d9a7d5241bad80e852db49e363501b2ef4417b2e8e82c847d1380d2db076a69", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1048147274064332844864307200" - }, - { - "id": "dd20e2c2a436ce57baf3ce6821ecb0b9c662f2c70caa2ab75755e2ec0848c790", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1192394994850280336792748032" - }, - { - "id": "0a97c5ba115ef4aa0b97d560edc03332fd0885a01da203f309248d2de4ecf802", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1138379986837450538746511360" - }, - { - "id": "26ecde8fe7de968da3596e64db6e29a671ae8c7ac8d8437b748077a8c50bc5d6", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017", - "value": "1007626065849784348416573440" - }, - { - "id": "ac8ed2bb42bcfa61ad12efaf4123475f7522ab8e5b61a95e2ac561367d0730ba", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1182504776340197973801566208" - }, - { - "id": "a8f0d4fcbd617b2ed30b97b3281e64ba2dbb34274cb4323782d0f8c640b22097", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1008047945743236717564919808" - }, - { - "id": "549322a3eb140f067971044c95383d3c6330eb7ad884835686933faa9ca7b2d2", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1816084125978513348408377344" - }, - { - "id": "74376372f85778e3215503884cb20b41724a8743932a10ebd2e415f1930d10d6", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1373995009057331323559116800" - }, - { - "id": "df73e03da74649d4ab0c29e025cfb31eb22116d22c94f3ee94df4dedd51e8d82", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1040201633925760157298098176" - }, - { - "id": "13c9e98058e5b00c6e575891934802be9865da93e1431f2c12b8a13969bdd57e", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1229655093811018070688268288" - }, - { - "id": "d7f8a1f80818a23d103b2aa643c2ca7e3dc5c8208c0bf5e4d218ca59d9520f14", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1026920011072794811882012672" - }, - { - "id": "8f67913307fc95acc6bace5c36733793739eafdc7f031c08cffaf6cbb545b13a", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "03687b56acf5fff6701bd49508cd857877ab26aae6de83d8cbe0c679116e0b36a0d1e771d546", - "value": "1002535943929784339407732736" - }, - { - "id": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2724215459135375404118835200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "146400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "995lm/s2XGfzG+RkzN2P64bjhxd9MlcWGBLhPHmTyKU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1461248230061118843311357952", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1032495699800029090361901056", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1064160352355879151271346176", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1123548037421055001998917632", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1007504346777075854804779008", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1020348434014837495282073600", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1103672578887597711084879872", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1062341683190499805095133184", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1107577374206893515852742656", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1021259314898935996679716864", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "1492974271748951648778584064", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2782911267860196643685007360", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "10090163918702673899930435584", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["106800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bYNNYqjEWwab9WRlIk7Sc4IgfyvxSomS/1akFbiXiBC3nP0MZLJRgDELbYVVbnA/sYXmgwG1qNS3NQhrcXM0Aw==" - } - ] - }, - "transactionid": "244f4d4d16a2f12dcc5ee31845c02f31d27f9b46c89f6bd7f015c16cfc4aa39a", - "confirmationheight": 217999, - "confirmationtimestamp": 1564402477, - "inputs": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b9712274833a677fbc01d45b7b5946fba0ce170a5900ca9db3b55add749d8a47fe83500c2a49", - "value": "25370312309925744658136875008" - } - ], - "outputs": [ - { - "id": "dabe11e1f7b1ca92bc907413091fd4344fb1403f6cef94c69b7f4b9d981ca522", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1461248230061118843311357952" - }, - { - "id": "3061ad008aa777671eed6e9c848fb5acf36e1f9a60b3ea9f1987e5fd82df905a", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1032495699800029090361901056" - }, - { - "id": "688c1e086ddc8a3a9ab48fef95fbd864de94a4d5fa08c43a00e713bc3a105e2f", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1064160352355879151271346176" - }, - { - "id": "38c94d1dde8f7d77d6633fa131e59e056a8ef6fe06561b4e2a59ca6b357dfe82", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1123548037421055001998917632" - }, - { - "id": "ac08de8e72ecb23ed9ae228ff9bad2cc55f9064ad17cb3fc7a39495a3540bc55", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1007504346777075854804779008" - }, - { - "id": "212842a7b1cdc53d5beee9243f3b3d5c8f6e68e39133f3ed07c0cc7ff1b718aa", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1020348434014837495282073600" - }, - { - "id": "429472ff1cb4fd4fd780bc0b6483850664ba49aea2a41ebbcbf84501f9c55565", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1103672578887597711084879872" - }, - { - "id": "2a9e25c35d8eacad57953fd9791c2ebb8361a4291f58ae4073dd6fa0545771de", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1062341683190499805095133184" - }, - { - "id": "559be81698656e4ed3fdf41b548eed34fd769e79daa67890bbf13a7aa7b5f8a8", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1107577374206893515852742656" - }, - { - "id": "8c9012b801055ef30b4527cd0d0b86a8927e2bec8fdb1935cbd5033afb3e9fae", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1021259314898935996679716864" - }, - { - "id": "929d6c399efd0c93e290a3f4156763ddbb7ffbd4a193bbb448beee9a0d5125ff", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1492974271748951648778584064" - }, - { - "id": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2782911267860196643685007360" - }, - { - "id": "15fae469fa62391b31af31e4752e9ea08f11993b97b2fe9cfdb0921a575127c2", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "10090163918702673899930435584" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218143, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "106800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "MrBUyWdi22A5SgZNCOwugAA69FMJB60xxyNVxynh9KU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1054636491601870197453488128", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1350174135534338909577150464", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1003420856152356192129974272", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1111387013403787185410277376", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1038488315843283338510729216", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1065120951142544915529203712", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1047813799281803392564002816", - "unlockhash": "7829b8b59e95977d783fd29b06976664ed432c0c15cafd34a71d447d78c94a025c4a9f0e1b14" - }, - { - "value": "1191950133821474721335607296", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1263272634893415554050686976", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1249507190650401222207471616", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1854821593230217400824102912", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1041900764913446154662838272", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1009605119153745163982209024", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "2729434491676486602015637504", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8076803024608144726925770752", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1043853501632856482253897728", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["117600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JS3YXnQxrxgZ9/pG8QAriCQxXNqwRyanaM7xf+Y3tfcDkdCjpsNzFvnWOb+NouYKgfcSTjlFsZnhCFPsJRUuDQ==" - } - ] - }, - "transactionid": "725116dc3d034c8d083e81fe8d644203c32f0609ec7cb2f5efc518f0267fccf8", - "confirmationheight": 218005, - "confirmationtimestamp": 1564406007, - "inputs": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "d9db63868655fe0eb6f893b26dab4d38199903397f58bb823f94b1b2cde50e52cfc3f6d0363c", - "value": "27132307617540172159433048064" - } - ], - "outputs": [ - { - "id": "6d3e82f77cf0b92ac9ec18b3c89ed0648f116c31dcc7d6ea609b07dc8a748f51", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1054636491601870197453488128" - }, - { - "id": "a3e3c8d21a84d5dfed121e312e4ea781b4abd1baf04489064035450718fb03ad", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1350174135534338909577150464" - }, - { - "id": "33542c1c21665572015793034f416f76d152d513c42e917dd0187d8798ba522e", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1003420856152356192129974272" - }, - { - "id": "dc364631aaa610084c3dcd69fa048b06fb55d048c3445db8a0a97c671b3ee2c8", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1111387013403787185410277376" - }, - { - "id": "7ce56ff38d12965fc42cfdd2d7b9974e027659083415e96308b9dd54014edf2e", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1038488315843283338510729216" - }, - { - "id": "ed6a2830926eb7a853273685c789e831171c0e30067b35173d968116f6c05bed", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1065120951142544915529203712" - }, - { - "id": "c26116b484b4e6e969e9328c95eb85d1731e3b101847cea2d77eb972e10302fb", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "7829b8b59e95977d783fd29b06976664ed432c0c15cafd34a71d447d78c94a025c4a9f0e1b14", - "value": "1047813799281803392564002816" - }, - { - "id": "44f5ea5af82568e86f523f7dfe9514ad1b7e14ab9f2a236d5c36744871204c48", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1191950133821474721335607296" - }, - { - "id": "b2c8bda01e464193eced1c45e98eb6b0a6b6ff2e5f12a243e29e48f97ceb12ac", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1263272634893415554050686976" - }, - { - "id": "96fbd40c6e10f00ab55dacaa7e54ad56689e6443f3898c0c311b3960d9650e30", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1249507190650401222207471616" - }, - { - "id": "91b0679b51339ea1a421efbf63081747215cb13fc02c928751e21b7fc701bc7a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1854821593230217400824102912" - }, - { - "id": "a5a59bf2b4db0d827af922d6dd69b6be15eb3354dfe5f20779d067b9b05c1746", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1041900764913446154662838272" - }, - { - "id": "2032599288408c8ac3de04bb1ff55175247e3d8916ffb7daf88558968bc5044a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1009605119153745163982209024" - }, - { - "id": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2729434491676486602015637504" - }, - { - "id": "0b03a87659fec12f921c1399dd12af1db67cc6931a524b749409309903ecba1a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8076803024608144726925770752" - }, - { - "id": "25f084d9a27d645e5f7c97112140c07da818758fbe975b7972dd5f036ff60315", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1043853501632856482253897728" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218149, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "117600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "3AjNDNuwFEJYcTe4BPCD0GTKKJG8hFQoWBhQ1+TDzDM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1215825537357827580509552640", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1080523928006530504659042304", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1080000348074778748575547392", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1462067791828009333946318848", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1305860178525061773079871488", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1137041508548613636281597952", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1219330541068376483608657920", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1068562291703369170953961472", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1024881723946115061481996288", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1056489617078373250068840448", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - }, - { - "value": "1044904709346700251076689920", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1501908649396087626687053824", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2505048317327843513677643776", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9375060880955736245193932800", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1071050385967063042583429120", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["114000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QrUq71MvrwwVyU4CGNblcU8v3O2epqfRkpI+TAUzHdggYGgkeLfehGZa+UT0UxypmHGG5+9H+nhLSRkWwmCTAg==" - } - ] - }, - "transactionid": "634c408821f8add6489b73c38cc9ae32f486f49ec095ec0664cdae9d74b19356", - "confirmationheight": 218010, - "confirmationtimestamp": 1564410999, - "inputs": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "df4c72a5ba30a2d1c42e467911b1b3b4f41dc7de47228daa95eab33e0d0868b9a4cfcb0e517f", - "value": "27148670409130486222384136192" - } - ], - "outputs": [ - { - "id": "f0ccfd3aa9ed687796b283c8ddec87af145ed29deffed90b53969328b21400f6", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1215825537357827580509552640" - }, - { - "id": "4f5c42d207d89485ac2f09c7188cc3099ff94c7529771524ec0e2fb0fcafb0a6", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1080523928006530504659042304" - }, - { - "id": "670bb7d677d06eab721ee4ddd23e10d8d0dc01f61173887b63152cdf3dc614ad", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1080000348074778748575547392" - }, - { - "id": "4903464cf96de58a26e37ee5d39e4e39f11257d36adc3b0088e246e6f258f819", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1462067791828009333946318848" - }, - { - "id": "b474106a832d18a7052fb721718eda7bc71dc58d4058205face09ef7d826956b", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1305860178525061773079871488" - }, - { - "id": "e046931953d7a39cca023bb173107086e457e072664e8122d9e3bc566b7beabf", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1137041508548613636281597952" - }, - { - "id": "d85fe84ff22fc59e22b308c3c289ae65274745e7d080ffcce38179ea5a0eeff1", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1219330541068376483608657920" - }, - { - "id": "9059bae66eadf3808bdc3c4ebaec1d41636f2cbff912a9af09662b80e472d17a", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1068562291703369170953961472" - }, - { - "id": "846439b2144075c80424928d73c39f4dd0bbb5fac97ad3d6072e93737aa3cbe7", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1024881723946115061481996288" - }, - { - "id": "f844a551573a9960c79585566fd94e51f67080880f17575b47a26a86ab40983f", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1056489617078373250068840448" - }, - { - "id": "be54b4e31865fca9e52bbab60e5f6a0edd10891f34aa9c0b58b19a8e0c2e029a", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1044904709346700251076689920" - }, - { - "id": "2effb2684c271095bff8c5a1c019bc1a62512d0677e0fe3683be54de719304bc", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1501908649396087626687053824" - }, - { - "id": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2505048317327843513677643776" - }, - { - "id": "08dc0b70b4ada888c8068e7deb86070deb5bd77e9e0cad98d47a89f3f8296dba", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9375060880955736245193932800" - }, - { - "id": "8d79ddc40a201cdde4a31ffcd3c63ccf0ac51f962e75c1d51247d9e84863596f", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1071050385967063042583429120" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218154, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "114000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "WtLrxj2zeEUMdi3PpNNz2OnDQ7yxD23kdiugVirnhmM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071686641950366015573884928", - "unlockhash": "8299c421ee925baf785d427b1e41e453cd544d975e0b309f3a81e2d7c54d370b1df466771376" - }, - { - "value": "1163976493323576049128177664", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1113938574856762073740476416", - "unlockhash": "8923efe5e27383e1a3d9c0de88dd62bce20ce7add2818ab1cb3e7ce9b6c294f30ddbafb9e0dc" - }, - { - "value": "1036633915680756269787971584", - "unlockhash": "7f051114c0e003b0567a5cbee91dae76d14c6a20a92d801b2ce098acd8be498a2b5448e090de" - }, - { - "value": "1334412880130118269058154496", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1083975717885365515884429312", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1100102569360540986397163520", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1041051358192228220224733184", - "unlockhash": "4e803209cd71b7beb2b6613b6088ce4a818bbbe143bc0d7cf7cef0eb5822defdba4008d52a10" - }, - { - "value": "1293568148827283432802353152", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1798998264014059120768319488", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1272952094995156931813310464", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2779539492150459287300210688", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1231231958942116727207755776", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1202062261980353704736866304", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1127155884990316887049633792", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1066861080862900503490199552", - "unlockhash": "744f3043680b3ca9d6a0e40b2a3c5db3bce9b72a364e32c8cdcf209fc5e21d1b7df2ef9fa0c6" - }, - { - "value": "4040142287040516270170570752", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1031790778062189153976909824", - "unlockhash": "3474c995cc569d43af08623b1513d7d2deb1901bd69bbbc2967c9c8e3fb1cc882c212b21a23b" - }, - { - "value": "1023867325962481283164372992", - "unlockhash": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560" - }, - { - "value": "1017350181956136878049067008", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1041766647882706594193424384", - "unlockhash": "988268b94509c0d5d0bd0b2766ebb317e0c38f6fb5aecb9d6571e571b074b29eaab89dd2b316" - }, - { - "value": "1063874520848222186900029440", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1018839266352273322930552832", - "unlockhash": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8" - }, - { - "value": "1009100628037103741016473600", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1029344974114413017066635264", - "unlockhash": "967a84d9df19db8d7e35f2dc6532357041cc8cdc5c8c10f48c0a4d29f23ef12adb794de7f71f" - }, - { - "value": "1154593906928858848598949888", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1025928705830430696520810496", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1146141155269046649574653952", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1258777447526670921594044416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1094807779181959025108451328", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1045358090297504225248296960", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1056369622813071546957955072", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1054487107332328074142547968", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1178979013975825858989654016", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1099499596575569414463684608", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1210672855392262960033300480", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1184696405042695780297736192", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1171747991507523452255862784", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1215361289263574687951093760", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1915689271929876650414571520", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055656498846567195284078592", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1058754186629098547253608448", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1063559898983413907591790592", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1002680830191696192625672192", - "unlockhash": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138" - }, - { - "value": "1092559308254708290004975616", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1124068695391302650111721472", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1052059804199910530105950208", - "unlockhash": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0" - }, - { - "value": "1060841920727964288449708032", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1139445647946728923508506624", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2488916717212349232465313792", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pF5KF0+Qx9uCucPvcrb20Eh7WhwIwgWrBeh+8TEoaRg+kAYSC91ZJBqR5N0wXiXQ26nAXGq2mc6CNAPVV/AbDQ==" - } - ] - }, - "transactionid": "8ffd04361dfde015ff1fe063fab9db080475e1d68a5094778090ec852cc9726e", - "confirmationheight": 218011, - "confirmationtimestamp": 1564413621, - "inputs": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2655ef66027005003009fd6be125496fb8cc21ed26ebf89b4f101588f3fa4f3cbebe6c5ffea5", - "value": "62946117695649340991984615424" - } - ], - "outputs": [ - { - "id": "081301f52009856ea97aeef34a9a7d8005fc8130ef902631b62e74f6a206ff00", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8299c421ee925baf785d427b1e41e453cd544d975e0b309f3a81e2d7c54d370b1df466771376", - "value": "1071686641950366015573884928" - }, - { - "id": "eb809c4de7045cabb4790007ce353caeb7184fcc29e102b1885c1a5022877694", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1163976493323576049128177664" - }, - { - "id": "3dfda6f5cd84be82b89a29e84e80603f9ed6ebb253889059ed4eb801aa858469", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8923efe5e27383e1a3d9c0de88dd62bce20ce7add2818ab1cb3e7ce9b6c294f30ddbafb9e0dc", - "value": "1113938574856762073740476416" - }, - { - "id": "05625bd5d230719ab6df18c18e7e9135c1fb46331fce2f2a0dbbf873ece278e0", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7f051114c0e003b0567a5cbee91dae76d14c6a20a92d801b2ce098acd8be498a2b5448e090de", - "value": "1036633915680756269787971584" - }, - { - "id": "0b6d03e168cbefc479d5ff77b8e180214733ac7252092bca851aaf1ef85e42e3", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1334412880130118269058154496" - }, - { - "id": "5b33128068ab4d6cb54e1ad4e886d8d4645ae08820d0949177eb1c14542cb1a5", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1083975717885365515884429312" - }, - { - "id": "8f50b6fc901bd724b4391e83b50dcc4cddbcbf76d80560a6ada7db116cdfe5b8", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1100102569360540986397163520" - }, - { - "id": "c56147c3872fe3c93a2a836fc905053bff3eaa52280b377929d1622d35bac77d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4e803209cd71b7beb2b6613b6088ce4a818bbbe143bc0d7cf7cef0eb5822defdba4008d52a10", - "value": "1041051358192228220224733184" - }, - { - "id": "8972c41b42d386f37daf25eec75345fcb85e322ac00c5d069a49c88eb69782ee", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1293568148827283432802353152" - }, - { - "id": "b689f2737601236772d56e59c06f631ef14caf8835af51499fbaa88dcb0cf3c0", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1798998264014059120768319488" - }, - { - "id": "c5be65882a7b504a7625e08700a28d482ac7dc02517c27e11ad77c7c8bbf0eb1", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1272952094995156931813310464" - }, - { - "id": "bed472f858dbcdc3f02cf065afd814978c6af23e513fee720ac403a484331b6d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2779539492150459287300210688" - }, - { - "id": "0286a706f171ea1d0b187a943ab912b46cd8139d131dfae14ea8177886fd2bc9", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1231231958942116727207755776" - }, - { - "id": "a5bca7c67fba57e88ca44d419bc779c5b581310adc5ab42a1632f3ea60015a63", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1202062261980353704736866304" - }, - { - "id": "c41e18304d59ae4eb8ed5e5df26b7c3dc26ea6f44a969b8b65573563af522ff8", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1127155884990316887049633792" - }, - { - "id": "bcd0a395a727947b0221478d0a91a385decc7f3dda67bf00553676ab0cae41ff", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "744f3043680b3ca9d6a0e40b2a3c5db3bce9b72a364e32c8cdcf209fc5e21d1b7df2ef9fa0c6", - "value": "1066861080862900503490199552" - }, - { - "id": "27fe465a478ef1bb555712bf2716b1b3a3d879b3d5bb4a285e2f8f4d72e16ecf", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4040142287040516270170570752" - }, - { - "id": "f079df0afa2e2a03761b9d2a524c37aedc4a0813b74da33a8cd0a4be83d21035", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3474c995cc569d43af08623b1513d7d2deb1901bd69bbbc2967c9c8e3fb1cc882c212b21a23b", - "value": "1031790778062189153976909824" - }, - { - "id": "eea65df2c272bb895c0fb050ced45e60fc6b13cc516852873feb01fbfd38efea", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560", - "value": "1023867325962481283164372992" - }, - { - "id": "b1f8454f77256a4a86dfb8d6d9e8de81620eb9522577d2b220af7857d1c41e49", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1017350181956136878049067008" - }, - { - "id": "e6b2c69cabd50514805d98a5903aed8ade12016069ec923380c7c258eae31910", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "988268b94509c0d5d0bd0b2766ebb317e0c38f6fb5aecb9d6571e571b074b29eaab89dd2b316", - "value": "1041766647882706594193424384" - }, - { - "id": "dc77dd23bd4c43640ba651abd1e693eb22ac372472d2863354bb9b4a79101a4e", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1063874520848222186900029440" - }, - { - "id": "c6cabd460353f51d59c7c7cb6309eed8f9e0ad9cbefd99cb130113b4c01f9e74", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8", - "value": "1018839266352273322930552832" - }, - { - "id": "20b40aa41d0a16d6d9b16c915b6692b4d884576f618b10b9dc2722f1e4b1fbaa", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1009100628037103741016473600" - }, - { - "id": "17a300a68067a7bee439401cd3b4603bea807fae61a0d7a2514b9298a83bff6d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "967a84d9df19db8d7e35f2dc6532357041cc8cdc5c8c10f48c0a4d29f23ef12adb794de7f71f", - "value": "1029344974114413017066635264" - }, - { - "id": "0d6326a66cdd8c4269e32ab152d77318997f117bc894ecc7c3eeb5b232c28f33", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1154593906928858848598949888" - }, - { - "id": "f788ae0ae1adecbf4f6a71873f117346962fc32cece2fe5f18c43db3dbd38c45", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1025928705830430696520810496" - }, - { - "id": "fa734d104bfde2b709e350ffad8babef9d697a72406484eb0b853c29ec312914", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1146141155269046649574653952" - }, - { - "id": "ea78bb31f82ed707428e3f85ddfbe1d1eec31910b59d4e05b9f623bad1275809", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1258777447526670921594044416" - }, - { - "id": "a0125c62a5f9b312bdd59ed67438b84cc953a2ef8a21153addb997ecd0a9d0fa", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1094807779181959025108451328" - }, - { - "id": "34308899a718b660af3b05540862cd84de0be453aeb855ea2bf8e3583b9c42eb", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1045358090297504225248296960" - }, - { - "id": "e354b8fc20c3980c0c7e23ad673fd5645c4fc9174422cd47d4c0bb86d98d2879", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1056369622813071546957955072" - }, - { - "id": "94deb6cd07a5935f0ab74c363632aa7ef9305f1a7c75ee35d0843a14427e9579", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1054487107332328074142547968" - }, - { - "id": "7476d65f5e4ae3481e1bf6da7a911277ea1cf3afb3df2d530217f67a8c0b8dd9", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1178979013975825858989654016" - }, - { - "id": "e32408cab0cb9a9542d614c3af9e31d00673620b404daa2c4eeeea5ef9dbefd4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1099499596575569414463684608" - }, - { - "id": "203ad1a60c3963b5b7d1bc49196c10b8f78a7845e6045d3eb7b819609bf172a4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1210672855392262960033300480" - }, - { - "id": "208d50574f4543c7931437a9c1ba31c73ef469a1886689c3fc78616cc55eafff", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1184696405042695780297736192" - }, - { - "id": "5972aa9fcdaf22b7700b1aa3b8a5e51c9c0e3ff7972e7c0b35aa27aeafa5bf3e", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1171747991507523452255862784" - }, - { - "id": "a3a493ac73acb81abf62859e24b06537125154d1af6a9f1c4431fa2a7b2aeb18", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1215361289263574687951093760" - }, - { - "id": "937e71b09f9849a4cd1f6624b6a81eb05ac1382cb3e08acedd4f3e372c54a096", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1915689271929876650414571520" - }, - { - "id": "1d043d287601d81c8cb52bd2e352c3102dd20f1c9f2883319004f02224869889", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055656498846567195284078592" - }, - { - "id": "733e5578be42eba13e39b947ea8caee679b81da2350c5d98a771028380092a81", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1058754186629098547253608448" - }, - { - "id": "da7c7ddf220b8a95efb4342132dead9470e99f43823a111eb5cc1276338d6c9f", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1063559898983413907591790592" - }, - { - "id": "da9e93f5510cd69895f4377c6c29df634eae48821b00ceaa5384c27e358cf0dc", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138", - "value": "1002680830191696192625672192" - }, - { - "id": "25872f043aeef297f133b31063c0453a845bb9f5e95eebc3151067855e3673c1", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1092559308254708290004975616" - }, - { - "id": "bfe1284f92beec4b032ebc36d7ff01486ded4e059fee73913ffdebf4a556bcfd", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1124068695391302650111721472" - }, - { - "id": "3a00b5f8fd4aa0366662d32108d3310e683084c4810c05f4ee23abd5017a042b", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0", - "value": "1052059804199910530105950208" - }, - { - "id": "eedf42a7b1710cdcbac810614c38fa535d6a4af94d6fcbfd4bb03943d611fef6", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1060841920727964288449708032" - }, - { - "id": "c09ff2ce62f114574dba8509dd6e3951a60001f15643444dfdfc5a749212d2c4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1139445647946728923508506624" - }, - { - "id": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488916717212349232465313792" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "adL2JMNlhHiLx9nB7LScSpNamk+pinsrsaXQzUETZ1c=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1162657131002143694990344192", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1059625768631176882772508672", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1056660791466371630441824256", - "unlockhash": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0" - }, - { - "value": "1239742951047062057381789696", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1551324334685458723785146368", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1069001778495856219773730816", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1193633923929153706113630208", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1014311569202458983695646720", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1044211314995574085594873856", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1005825967063168020795555840", - "unlockhash": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84" - }, - { - "value": "1002198040314602460282880000", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1120835224926883995350728704", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1015307368711813209549963264", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "1129904325276093182243504128", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1059977320930815374311227392", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1090472602662315211251318784", - "unlockhash": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472" - }, - { - "value": "1117649699877377068387926016", - "unlockhash": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57" - }, - { - "value": "1035026953756410022130089984", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "1489054252058216283609497600", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2468503420464615561126477824", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9613386543992912570986004480", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1333182776057651700193296384", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["139200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6Htnrhld+BqOrlNJaN+5JLELzeM9JOXBJwJbe8txuWwD5vb/eeUiErsjBGLMTzqx167eWqR3FgacU+79kx1KAw==" - } - ] - }, - "transactionid": "77d638e50db9fcb0fa1d40620c878fb3d5ff04d0f0b6796153aa0450bf9d8c7b", - "confirmationheight": 218016, - "confirmationtimestamp": 1564416745, - "inputs": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "e82814019c597a3aed73017d9df34550015b2f7cb1c426274da856379f53418eff3d572f9c88", - "value": "34872633259548130644767965184" - } - ], - "outputs": [ - { - "id": "cdf74ea79725f215f612d21ec2342a5372529e6b0b0346908bcc43aed881629e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1162657131002143694990344192" - }, - { - "id": "789c19f2f3f800e1f34cb70ae94ce17b3c8c336e5ea07cd391a27436caa3639c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1059625768631176882772508672" - }, - { - "id": "da45867c000e99c1eee002041d9f722d1772b7a5099035a535b835274444777c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0", - "value": "1056660791466371630441824256" - }, - { - "id": "141321872d1af032b2431d332cc93db097075c080aa37b51ed12cd10e5d56a93", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1239742951047062057381789696" - }, - { - "id": "a61b21132322cf63e3d57c618de8a1c0694d2e9593110718423f1b43dd72e74e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1551324334685458723785146368" - }, - { - "id": "026909b1c5bf116a37b80d5f6a839819740e6f3e4f7483eab8ce4a11ba75fe78", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1069001778495856219773730816" - }, - { - "id": "5cf021124b06979de45b2adefa781b307cfa1ff82b942fb619d4fbc8dfdd2645", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1193633923929153706113630208" - }, - { - "id": "adfaa2b5aba4ca3524b30185a5b75a4a6c012934717c5cafe121a07d2db164a9", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1014311569202458983695646720" - }, - { - "id": "739b52d58413ba37c61757d8acd1c7ef7dbbc9ec6e432f4438569a3b2c43dc5c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1044211314995574085594873856" - }, - { - "id": "51825f3a22d9e551548a013dcde08ddc33d5ffbcebd15a86b8246b12eec6160d", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84", - "value": "1005825967063168020795555840" - }, - { - "id": "709f1a97e3c70f054e4c18ba71dec7e23e5ff5b9558d0b1c6cf1206e9d9072d2", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1002198040314602460282880000" - }, - { - "id": "ff5dc9b0b3e983a222bba9286116a5e4289ff258a1c548b1aa7ec1c5d88b3a72", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1120835224926883995350728704" - }, - { - "id": "6230fc9b09c17661e21c0633f2e24041dab8a55831ff534871edd9c5bb71645f", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1015307368711813209549963264" - }, - { - "id": "8de45f3f1c511efcdec6a565d19e98418c39377eadb4c2ea7178670616a9f567", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1129904325276093182243504128" - }, - { - "id": "24affa749b2a1ef0a397c36aaeb9cd957baa8e96cca0b85ab8e69e41e0c54457", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1059977320930815374311227392" - }, - { - "id": "46774bbf7279feb7e38f7ec8a986de0f0acecf3e51eca3ae01fa21b3d7c637b1", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472", - "value": "1090472602662315211251318784" - }, - { - "id": "b89f01e3ec553e9d4ff78c986d6c798ed8d85e937d873d7e57ed1eac4c3e87fe", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57", - "value": "1117649699877377068387926016" - }, - { - "id": "330754d64784444efa60fc84f53f0225d0bc9762f4e8e4de2ed539b5ac9da005", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1035026953756410022130089984" - }, - { - "id": "46b50f32b35fff6b4c3c7d3f9305ccb3e233d946b75bd55bcf720546a33bce06", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1489054252058216283609497600" - }, - { - "id": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2468503420464615561126477824" - }, - { - "id": "a6d392c93ef644aac11db517fa1d6d44e097a8e39c7f2cd2e3408a4b9f70dd1e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9613386543992912570986004480" - }, - { - "id": "1b0feb20967247e1cb2c0f7901edb2ab9abe0cdbddd858b5d5930643d4ea47b7", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1333182776057651700193296384" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218160, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "139200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9AZjqLkKjloC4+hMtw5J7vuMUNA+4fj4WvDv9qk8ltk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1009659416210059795330924544", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1069522809322495470837104640", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1061082100543926948388995072", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1209066384893259844714758144", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1187355580044046973496459264", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1022244659733572670603132928", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1006653776364272323166470144", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1011200721685465547599331328", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1134823961749289191694008320", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1114083320196531187825901568", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1040686016009665412539088896", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1221686987634073927451410432", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1138572209039472540106096640", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1119505183718637087764774912", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1894793774076889152870154240", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1057310813990102932135084032", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1008484210777309405749575680", - "unlockhash": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0" - }, - { - "value": "1039675527385857125960368128", - "unlockhash": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed" - }, - { - "value": "1007393891544533500952412160", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1029726634888795782492454912", - "unlockhash": "243b52e69d69b684426d2b0ba11936eac14368ffa2b4d21e8d327da18cf97ea9a80028aeadd2" - }, - { - "value": "1275546339544207404385697792", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1008637336705576342016294912", - "unlockhash": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6" - }, - { - "value": "2186183085917049875257622528", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8940360099218523230092394496", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1053905552297355167953387520", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["150000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yBWYetoGHwWjuPOj0syOjbxO6FyzCrFRaTkE2D3aXLQYttevQD4AD8szNCLO5AkGVtpxbo+mU3yUZ17P9jMMBw==" - } - ] - }, - "transactionid": "291c6a63477a555a778ec111d80e22b98f199dc44cc5c9403af7a5a517e869da", - "confirmationheight": 218024, - "confirmationtimestamp": 1564420475, - "inputs": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "713642776ced071bd26c5a949bc4c590419cdbe7534722a693fbc9b1c2ff8980b5c57098241e", - "value": "36848310393490968841383903232" - } - ], - "outputs": [ - { - "id": "bcce7b3c2334886227ea5b9e1c0f5b4fe3d63f4b78145a255265bc2c73e0923e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1009659416210059795330924544" - }, - { - "id": "4b63eb846f7fb9df2148185597400f89bb0e9a4c370caaa0cbd9dcd5aa66de8c", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1069522809322495470837104640" - }, - { - "id": "b1710c1de949bb7c79d0be5d6dc9405cacd23d11ce83285203e9a83fcf7dc6d7", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1061082100543926948388995072" - }, - { - "id": "3a89fb4caf3b9f7fc45890ee30ddfa26150448b883570738998e2ecf74986a9e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1209066384893259844714758144" - }, - { - "id": "1650c05f6cf927b6f0927c3c21e86381831aea5b6ad29e5007ea05f93408c24d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1187355580044046973496459264" - }, - { - "id": "a941cd5fd301cc849aae80066447d29cf7d71de37b2eccd9c5489c3cd2824f62", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1022244659733572670603132928" - }, - { - "id": "13293cb87ae8b4324a0321770da86425e4386fceb059f53f47b60980bbc092f6", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1006653776364272323166470144" - }, - { - "id": "e84e61ea2e531f89d54bff373377095d42e1e6b8959a8d8685bc9052b95a47d5", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1011200721685465547599331328" - }, - { - "id": "ef61875856482a7c3c3f4deeaad8590b4eaf2c09c712a2c13f81b45e0a36e924", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1134823961749289191694008320" - }, - { - "id": "89bf306b2cace6d4d74636787d6913d2531bc1f8ce54f39cdf6fe29387238fcb", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1114083320196531187825901568" - }, - { - "id": "bc8ddc42853f6be4c1f1ee218023fb3ce17892fa6243044be18e50fb7760b57a", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1040686016009665412539088896" - }, - { - "id": "314512b303bef2ce443b72ced073c796265933154a2e44a0412356987f4b9ccd", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1221686987634073927451410432" - }, - { - "id": "b8ae1e299aea2b1a03a2d802b62daf118b708dc78700255d795eefdedcac1f3a", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1138572209039472540106096640" - }, - { - "id": "d959416736cc81a5b545ae5367ab6c1c595d11d8a5eb244c74f468d90f4371d4", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1119505183718637087764774912" - }, - { - "id": "a58b1623a67b943c7562ed78db527029d8eb0417a959aee899b9fd393808872e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1894793774076889152870154240" - }, - { - "id": "b61838a1236c92a6600a404361e53f893ad21be656ed330c18fbde4f5c5916d1", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1057310813990102932135084032" - }, - { - "id": "306f9691baee53463d99e5261f6b11e07e4fef91daaa1b8cd8d51b79041744b3", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0", - "value": "1008484210777309405749575680" - }, - { - "id": "3bad59dee56f5870942e2be59cc1c87848ae44b5211c447923aa5a3948aa7b39", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed", - "value": "1039675527385857125960368128" - }, - { - "id": "be55e89cc71ff5f1fba5437ee6bcdc26b58d368628e07863e63131db3981592f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1007393891544533500952412160" - }, - { - "id": "14bcb0b725898c2c93a2281f1ea2b36d3fe4855078cc4decd3bdc0ff50d627b0", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "243b52e69d69b684426d2b0ba11936eac14368ffa2b4d21e8d327da18cf97ea9a80028aeadd2", - "value": "1029726634888795782492454912" - }, - { - "id": "c21cd0ede4a6567961c5b6d1c81f57f3c5c5b895a702f68c6bdedf7a9e03d2e9", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1275546339544207404385697792" - }, - { - "id": "c39c3fbb9796d7718b3dcb86abb4061df6f9d8f351c3bb740a160da179a8b091", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6", - "value": "1008637336705576342016294912" - }, - { - "id": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2186183085917049875257622528" - }, - { - "id": "19b27829953651c98c92eb59cd1b91b9de2af8697b553a046615749a33812e6c", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8940360099218523230092394496" - }, - { - "id": "76c8d59c5a2412e88997bd111f910c2bd5badfa7af9cdedd82f608d917463ebc", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1053905552297355167953387520" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218168, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "150000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gjt1icob+aUPo1WCM2NBJ68WPNqFSbibE83TkvdRxrU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "82855716934913524584000000000", - "unlockhash": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f" - }, - { - "value": "5306289253735991460000000000", - "unlockhash": "fd228331955821196940260a5d2ef20ce4777ddc211435d784820f693b9680353022bc041fd5" - }, - { - "value": "3473972712005445950000000000", - "unlockhash": "ff054f7a542fcadc117eb53dfd7177db93d202e409c05ad0713ec7e9067b0c9b5d735aacce8d" - }, - { - "value": "3022656791466225750000000000", - "unlockhash": "413707a43d8987ad86977d6148fb4932736514c81d2344ceae9be68abe84fb6ff4d77cf0ce26" - }, - { - "value": "2809363225654938571000000000", - "unlockhash": "f96b9591b4003c2660c4488e1cdcae4494a71ff9b7b13323f1a53c4d695915b8ed98a3136a4f" - }, - { - "value": "1855106540760251465000000000", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1518286285660440660000000000", - "unlockhash": "e71b4dbd18b41f0cddaa2c252c0f95edb0b3efcb22e314f35892f9f55738ea4e36d551c08944" - }, - { - "value": "1237792935271103300000000000", - "unlockhash": "6841f29bd6405d897537632ec92b9d3d57a88e56facd6385dc55acb259f8125628eac047ae77" - }, - { - "value": "1038278208467755057000000000", - "unlockhash": "4080abe2bd9cce45c3073f1973ad74950168a66deba2a427bd0f46cf5612872a817fd336cbe7" - }, - { - "value": "1018649657266610539000000000", - "unlockhash": "2898910f36b38b565cf7cb39f9712d173f867d64799aa4d9bbb8e57baafd310611c9593bc313" - }, - { - "value": "1012001987987526812000000000", - "unlockhash": "ba5f40622d9b9c3e0fcc91eea713f83f1ba232600b88bef774c1b191eecd9ec2b8fbb8876e58" - }, - { - "value": "1006657371694807870000000000", - "unlockhash": "ca4283c134f2d4fa748c1f4361c8f1b1cc9fcbb4e2239537488bbc458feef2ec2c49f088663d" - }, - { - "value": "1001566430899968716000000000", - "unlockhash": "891280f209d762e431bd480d7090fe4074e1432e7ead71766ac5d2f30492dc166105eb508204" - }, - { - "value": "1000452643275459875000000000", - "unlockhash": "ee4e6e15d2bfe66516710c2885c86044df303035804b1c22d16dbc22e5767a43cc336a4f88c8" - }, - { - "value": "511045523263099075000000000", - "unlockhash": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791" - }, - { - "value": "466427849460647165000000000", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "253450116749667425000000000", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "235783766959640883000000000", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "208448492753984229000000000", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "161486659363433281000000000", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "136086022154300880000000000", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "119169856035870872000000000", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "115803323486094754000000000", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "108551358260504068000000000", - "unlockhash": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936" - }, - { - "value": "104459291794789395000000000", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "101181173145349077000000000", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "100962148551049922000000000", - "unlockhash": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c" - }, - { - "value": "100732381456795589000000000", - "unlockhash": "b6e193028a1e5ee4db61fbeaa7c5839177f1d00af64f83fd618153ee21f45afbc59e3935abc9" - }, - { - "value": "100348006057315068000000000", - "unlockhash": "e404bc0ac9a88a7b96c964ebb7415c869cdadd1ca27a55e63b469e0c863551773fe73ca6d155" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["164400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ReGux7Krl+b55wTCvKn/nb1PaXmRH7uOCFiZN8gVLVS1/5hHJ5S478Nch/HM0wLpu4L4vvMI8u7WCHiKVHMMBQ==" - } - ] - }, - "transactionid": "bbac7436523f16aba487f6b3457b7f8330753d5d48aac51ca8a206e95610b42d", - "confirmationheight": 218024, - "confirmationtimestamp": 1564420475, - "inputs": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a5bbb798dcff2e140a887f51d67d19e7831c0ed77e0662cbf30d550c6cb4c77df024ebd0f11a", - "value": "110980891348552592292000000000" - } - ], - "outputs": [ - { - "id": "0ab37ad16d9a0c32deef5701a70193c0755135953caf3320807b30453ce9142f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f", - "value": "82855716934913524584000000000" - }, - { - "id": "02c90e22784622c055f900d9f6bd9a0a1b915048ed96a43003d11146a3879cf9", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "fd228331955821196940260a5d2ef20ce4777ddc211435d784820f693b9680353022bc041fd5", - "value": "5306289253735991460000000000" - }, - { - "id": "237d47317a2a73a477462cc3f1b0803b989a76ae38bbe86d7a537e62e1c7517f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ff054f7a542fcadc117eb53dfd7177db93d202e409c05ad0713ec7e9067b0c9b5d735aacce8d", - "value": "3473972712005445950000000000" - }, - { - "id": "6820c5e51fadc6514a24a8994010d4f7871e7678e2a57217b0264a93dd13db61", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "413707a43d8987ad86977d6148fb4932736514c81d2344ceae9be68abe84fb6ff4d77cf0ce26", - "value": "3022656791466225750000000000" - }, - { - "id": "b49d01c7707bb2200ad406546288aa310017a35d1b8d7cac22a98fc89401f370", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f96b9591b4003c2660c4488e1cdcae4494a71ff9b7b13323f1a53c4d695915b8ed98a3136a4f", - "value": "2809363225654938571000000000" - }, - { - "id": "003940e3b1bd8f2979b744b675f7876a28b3ee25e4b2d0097e9732dda423c519", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "1855106540760251465000000000" - }, - { - "id": "e231bba52f2a31695f5d08e86f9d76543ba95be96558f5862772f1c5e8e578d3", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e71b4dbd18b41f0cddaa2c252c0f95edb0b3efcb22e314f35892f9f55738ea4e36d551c08944", - "value": "1518286285660440660000000000" - }, - { - "id": "4e07f7e5a24c619bdc1c07f697e902619828d3a67c1aeb54dfd19d4261aaaa96", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6841f29bd6405d897537632ec92b9d3d57a88e56facd6385dc55acb259f8125628eac047ae77", - "value": "1237792935271103300000000000" - }, - { - "id": "fda1ec69163e588c50c9e80a04c407061f8d0b0a00d839107f7b5dacf7bf4e95", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "4080abe2bd9cce45c3073f1973ad74950168a66deba2a427bd0f46cf5612872a817fd336cbe7", - "value": "1038278208467755057000000000" - }, - { - "id": "217822ec1cf6b11ea9d43e48b5b8ae9715ba4bde11e57a2231e14d87ec304033", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "2898910f36b38b565cf7cb39f9712d173f867d64799aa4d9bbb8e57baafd310611c9593bc313", - "value": "1018649657266610539000000000" - }, - { - "id": "e43f614a1359a3f984cff42a121e02cada0f314e25f3a71cb51aa35e0d7b3544", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ba5f40622d9b9c3e0fcc91eea713f83f1ba232600b88bef774c1b191eecd9ec2b8fbb8876e58", - "value": "1012001987987526812000000000" - }, - { - "id": "ee189de50735b9ebd8b0e792ab4dd0471ee2500c59afc282ab33a3b5b5f1c783", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ca4283c134f2d4fa748c1f4361c8f1b1cc9fcbb4e2239537488bbc458feef2ec2c49f088663d", - "value": "1006657371694807870000000000" - }, - { - "id": "86fd22829d7459994c1b233f7c8d1461e5c220b7cf89e5628f831eb4bb820492", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "891280f209d762e431bd480d7090fe4074e1432e7ead71766ac5d2f30492dc166105eb508204", - "value": "1001566430899968716000000000" - }, - { - "id": "4a6cb5b3d5a5d2a1af416225f4a556cb03e1c96dd0cc9aab248b0fb08c507e82", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ee4e6e15d2bfe66516710c2885c86044df303035804b1c22d16dbc22e5767a43cc336a4f88c8", - "value": "1000452643275459875000000000" - }, - { - "id": "4a02b8333e2424b288b65e5cafc7796ebd4944f5159788930181f1b1724474ee", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791", - "value": "511045523263099075000000000" - }, - { - "id": "a0cdb929fadfbd6a563e804824fe78d7fdae5790e290ba3e8b3c1ea8a32fa8ab", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "466427849460647165000000000" - }, - { - "id": "c757bec435d6546eaf6e57d4bb8f74aafd112d02fee89c164419f4b5401e75c8", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "253450116749667425000000000" - }, - { - "id": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "235783766959640883000000000" - }, - { - "id": "6cafd7ed9d7e5dc15868ac3780d3fcbb20236bddf8ac73cc461684046daadb59", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "208448492753984229000000000" - }, - { - "id": "de2b83444601d959ac7c88cb9e42678d771218dd5aa5f3ffe5261a8219e47364", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "161486659363433281000000000" - }, - { - "id": "9b66f82679ddb7731da7e5e3e78d194b89df7e8ae00983fa20b940198eefd90d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "136086022154300880000000000" - }, - { - "id": "5a4083eacecc2f8e8a74cacc9c278a8ae2b1968f9efe22864d50b89a907cd3f0", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "119169856035870872000000000" - }, - { - "id": "afc1c7f90dfdcac584429bc40b4da79accd39332a90980e81ffc50918d3171e4", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "115803323486094754000000000" - }, - { - "id": "85a01d128c702ff727834fcd8b46ebc1c36736c994249c10027e3b563c284784", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936", - "value": "108551358260504068000000000" - }, - { - "id": "5138d7bf094364aab6d2705175ef1dbc935ee6f7ed2391d0d3545d7ff436789d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "104459291794789395000000000" - }, - { - "id": "f431faeb53c362295403a8d8f6fa728910d6ab5e48662678942b146075b3be87", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "101181173145349077000000000" - }, - { - "id": "852ef1c5987d14b57e56b810e121e01a8ea97f12247a36a181b3129e10d6bfdc", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c", - "value": "100962148551049922000000000" - }, - { - "id": "5d467e550b7bd604ff2336393ec43fe6d74008208ca57699c378b1462c10ebe1", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b6e193028a1e5ee4db61fbeaa7c5839177f1d00af64f83fd618153ee21f45afbc59e3935abc9", - "value": "100732381456795589000000000" - }, - { - "id": "1af65eee96aa9e83afaf2c62381e281ab15d7ef1b28e5318fa76c662e7d7bbde", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e404bc0ac9a88a7b96c964ebb7415c869cdadd1ca27a55e63b469e0c863551773fe73ca6d155", - "value": "100348006057315068000000000" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218168, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "164400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "SVsDIjnWlgxgO8SYtd77d0TRFgx+oCpo6mXlW1I7GMo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1025441035638705867900157952", - "unlockhash": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936" - }, - { - "value": "1062623309864831321918308352", - "unlockhash": "86490035920e8350a9d88b9ea6c491a2b89af22475e8a165f8bbbd570d0980d89c6e759c0b76" - }, - { - "value": "1015111583158442148291936256", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1160725582100796788592607232", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1167196052848000969884499968", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1350762055451727513542197248", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2612815993311389035421237248", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1030809714272799913824829440", - "unlockhash": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda" - }, - { - "value": "1439349579754278365077438464", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "3892202111730435187978272768", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1017001657675610507431378944", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1114147559355000502161244160", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1015951373522752705264943104", - "unlockhash": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408" - }, - { - "value": "1011617624251034167795515392", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1236810809917629926551846912", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1034304315733512265922592768", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "1076175124182545859747119104", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1084494585449293746827952128", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1036000630424100962240167936", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1033426212229991525199183872", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1289601215725597600880001024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1315345183537933650184110080", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1074613835841486470252593152", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1528320446921932391239909376", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1603109239797694295260528640", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1043715477020154850923184128", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1186400345764788318297128960", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1595128707368115174292062208", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1125267681910626965448425472", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1150470188159473899989368832", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1022898937676061425818402816", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1446382961920396579694444544", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1153657234158433042271567872", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1078999011683721425216602112", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1215157395944062164940357632", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1057247048358447140713529344", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1048726543868894474786045952", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1034908842648313901825490944", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1082930229461356192339591168", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1444292233189060504253890560", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2176891228907684244467220480", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8975233401094286113824047104", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1080330453039604259959078912", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["214800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "dyWP1tez/BS+cinzL70F01j43Rfa9vIOcGnLTxS/o7KugiKCll4muLYlglTLhXNIZjgzzieuoPTTwyVd+2OCDg==" - } - ] - }, - "transactionid": "0d0505384881eb743364a86d312590918467351edfdffa4ed7c1ae44cd80698f", - "confirmationheight": 218032, - "confirmationtimestamp": 1564424162, - "inputs": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a18d07754756fe1e076f5b6aef3c2b075e970451e400af1bd264866a90c9a9ae22850f50ff55", - "value": "63146809554871004368451010560" - } - ], - "outputs": [ - { - "id": "cee03da6757c725b9599c7adae35ce349e24fc62657d90b57154a20744dc9ae1", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936", - "value": "1025441035638705867900157952" - }, - { - "id": "aa7b97b066e902d365fb082680f599d20065c3821877dfee4d58411c6b3a62a0", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "86490035920e8350a9d88b9ea6c491a2b89af22475e8a165f8bbbd570d0980d89c6e759c0b76", - "value": "1062623309864831321918308352" - }, - { - "id": "930c4e6e4f74ca7a959aff9f8b3b1f5ff55e300397214f2c205c4a86af531de9", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1015111583158442148291936256" - }, - { - "id": "e2bda22cb1cf2cc74111687c05e3e8b27d59cee12859eb368700a3f634bb69c1", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1160725582100796788592607232" - }, - { - "id": "fbff02c917578ccc6852c3cb9580ca6431fdc7fedce83f14eb8d2da461c815c3", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1167196052848000969884499968" - }, - { - "id": "f18eb354877e167f98a31e342d70379c6e3ad49b2e680f51d5f526bb4a56cfac", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1350762055451727513542197248" - }, - { - "id": "f439290920af2db9834b64cf628162e93d213f152cdc4f34544560c98baa561c", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2612815993311389035421237248" - }, - { - "id": "56b29c43a3633efbf1b4c6a91762563acc536cf69c5bcdc3fa224a24b11c0364", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda", - "value": "1030809714272799913824829440" - }, - { - "id": "af49dfd4dcdde52e02f5ff22dbf19a56806cae74c6b5e3d47bf769ccb6b1c48e", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1439349579754278365077438464" - }, - { - "id": "c8bf68122eb517bd7f9df9588ab5428f678ab0ce1b093e58035c2ce2c4dafa41", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3892202111730435187978272768" - }, - { - "id": "046e7265d70ee9257df6cc101e5b470f6891bf24362ce1fd63814a935bbf0053", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1017001657675610507431378944" - }, - { - "id": "7d1b1a0eb03a7dcaaa05ce58a47f5d0bd1ffaf120abf96f90ecb3c30ff92a1ab", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1114147559355000502161244160" - }, - { - "id": "58f25b66b71febee1fa8628608da844be8095a3cd8b2fb78b4447f20bcac6e2c", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408", - "value": "1015951373522752705264943104" - }, - { - "id": "f674a3596a1fabd288d022e5778dfa803fd3036e789fd085accc760009451073", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1011617624251034167795515392" - }, - { - "id": "efb308d30a3f1df12a81f1a78ed2e304aee855458d0648b44cb33a1b56085e72", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1236810809917629926551846912" - }, - { - "id": "a3973a38a5f81916784c5dac8565b0eaa52be1a7f681df4fa8c4ab7df6e2d412", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "1034304315733512265922592768" - }, - { - "id": "da1ce55ae895f7ce02d73e54d8df03f1c737f9c9b1f65d70ffa32d4e02793c36", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1076175124182545859747119104" - }, - { - "id": "e00c66a8f9fd7687d31448f952f294c231c6bf0af8ffd57995bb1230bf936305", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1084494585449293746827952128" - }, - { - "id": "2522208b6baa1c9370c6ae75103f518aa8f8bb11736022fa8b9ad05d0bb596e5", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1036000630424100962240167936" - }, - { - "id": "6d02ed33edbdc50ad26a6bdc3a19d822203072f37a40586bd7c89a1dfca65e4f", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1033426212229991525199183872" - }, - { - "id": "d0a3b234ceaf3a40ac1dff69f4130c4d2af09a173168c15842e83252d61e7baf", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1289601215725597600880001024" - }, - { - "id": "b8a8aa16222bbde299278e635e47ef4b0f21b16c6ca2e57c5a9a74ffa21c03c5", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1315345183537933650184110080" - }, - { - "id": "3ca3465bf6be4608362dd7561020f2ba561eda8f269244235baf2d78ad93c8a4", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1074613835841486470252593152" - }, - { - "id": "00957696e5d9febf1665d1de19e5c65c3f47566521cae4baeaabfe07e2a55bd2", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1528320446921932391239909376" - }, - { - "id": "615e346c5263a7dbfe418fbc5b5ff4e37949e4071a3096b5dfcb99a1ad252012", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1603109239797694295260528640" - }, - { - "id": "464290fe6cef287020ce6619352c2f33b7af3beccb8220ff3e47cfd8b6d0fb63", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1043715477020154850923184128" - }, - { - "id": "bd27e9d0c7e1b71e581551f2e13fb85f3be45984f4b1721860fd7a06cbd4636f", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1186400345764788318297128960" - }, - { - "id": "03d5e147cdd91b32372e26b6ff90f9c0f99f90ae2389a53fea57a707de0d361b", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1595128707368115174292062208" - }, - { - "id": "2e0142a806140d0e4b0bdd71426425596c6f82f80ff09c98bee10b7022d47236", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1125267681910626965448425472" - }, - { - "id": "0b921b0b107016ec4d4587c8013caa8cecb71f2c832dc96409952f9f02816e17", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1150470188159473899989368832" - }, - { - "id": "7e29c088e3c48477bed55bae77167b6306ef924c44889494f18539df01ee8b10", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1022898937676061425818402816" - }, - { - "id": "b67be6bde4e1d52de7f0cfbd49354d63fe05515d4d8317b483784fc0db2eea10", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1446382961920396579694444544" - }, - { - "id": "9e00081cf3e5f1bd16fe42df3ac3d80b7d49514a408181e0ef499410fbbbe434", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1153657234158433042271567872" - }, - { - "id": "5116b49227a08c4a90277773447b1f3c7ee229822840e516ed5002dbc3b13c8d", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1078999011683721425216602112" - }, - { - "id": "ac352b46d95aba1fe0b02e27860cce762d99d474dbb59dd93f819da4edcc9e59", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1215157395944062164940357632" - }, - { - "id": "66b164dcc3e273b3c4b27d0187b92b700f20355839d4853738ff899bc0f6ff9a", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1057247048358447140713529344" - }, - { - "id": "4dd1523776bf5bdda9e92fdd8a9ef3d53cbfa1376ba3078ea99ccc1bf2637df8", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1048726543868894474786045952" - }, - { - "id": "d464fe73a2ec8bf13a30ff1c93e0e3dc90f8ae0e6e0cdebddb669119c7675759", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1034908842648313901825490944" - }, - { - "id": "d7bc4864a90bd5b948c79b14d6029977e34031af21f259ed385006f642a82e1d", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1082930229461356192339591168" - }, - { - "id": "f8faa762ba497b3a7485dddb8ead6cf7f14f444e63fc4e83376be9274e9d2c04", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1444292233189060504253890560" - }, - { - "id": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176891228907684244467220480" - }, - { - "id": "ae0cb3d395e99c8a3a11acb8aad47bfe1c17d6226f75fab668ddd8f56fc41b97", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8975233401094286113824047104" - }, - { - "id": "51587f8bf99460e1a187cd93a66a1b729d4bdaef8b5220499eb454568a56b22b", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1080330453039604259959078912" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218176, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "214800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "u66XbMBuxVqGi/E8vTj1Caq5PIrhH2bOOuQQ5RLNukM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1018920375705694953583804416", - "unlockhash": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8" - }, - { - "value": "1152737836424976455883292672", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1031932629267415887991144448", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1034111377374038295037198336", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1077087733578970762995302400", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1036283396001897039212838912", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1025530758193820965973327872", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1117154821967751655557365760", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1273376399595683211695357952", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1009737719118810558147067904", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1069611034331182067591151616", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1180262202215928510365564928", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1095180637658542534572900352", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1149632862874791413154840576", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1777824647028158654066982912", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1048109060487597219070869504", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1010916748139830871190110208", - "unlockhash": "680d0c0b1a4a6eb6cee185cd6c0176ce4fab5d0e74974ddacebad8c5da47f4c46f3da33d3a64" - }, - { - "value": "1017431498505868495606611968", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1002069064076447352514412544", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1011072580124447460103700480", - "unlockhash": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d" - }, - { - "value": "1004537833783042301567336448", - "unlockhash": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f" - }, - { - "value": "1055880685060933056104890368", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2214843582313188321252081664", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9190630409181075968544997376", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1214885995563765107168116736", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["150000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hbXddNvnfgt/NcQi5/B/iqNHnSJzlPD+99V7CGD/AJSIYis8IqvZ+VjhsFAQCwJzaBqSue3GaHJVTMoHgXAJDQ==" - } - ] - }, - "transactionid": "a7cfeeeb271813c624795c75965859b4ed390d3240d202aaee935ce3da1fc311", - "confirmationheight": 218040, - "confirmationtimestamp": 1564427824, - "inputs": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "78a13e403ab6f8515937526fb59c0d00788b7397573094d3194591c60b12ac9eb45adcec64a4", - "value": "36819911888573859118951268352" - } - ], - "outputs": [ - { - "id": "ea6dff82fc7ab04cd998ab4a4b439ae6ef64ce135a3660ce195d2cd0f50eb772", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8", - "value": "1018920375705694953583804416" - }, - { - "id": "8bc88e3c0cf84b62c460c4e241ea510a04f1493a4f5cb68d465005eedb4987aa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1152737836424976455883292672" - }, - { - "id": "f64fb4ce34cf5b17dd28130ecd9ad5eb33fd76ec4b3b6df3c2341e8e4d20e6dd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1031932629267415887991144448" - }, - { - "id": "66dc2cd7c74cf0638644025c9ca02f1c9bc99611638851a791cbac184655262d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1034111377374038295037198336" - }, - { - "id": "4a87b29e57d338cb46f86b7c7564415e5a51b77c14363aec3d1b368b4873fc4d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1077087733578970762995302400" - }, - { - "id": "a2f81f2179d27be8bc086eb27ff7986510028cbe002ba3e5d30442425d0b3315", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1036283396001897039212838912" - }, - { - "id": "4d61217214d6f35787ca1d5dbebe274e2d980d07928c4ff33bbcfea2bd6287af", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1025530758193820965973327872" - }, - { - "id": "1c44678f594f23337acfae07ae7a7e1ab5b5a79e03be54c7574605dce58857d0", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1117154821967751655557365760" - }, - { - "id": "25fdf7c0a12264e719a828e7f5c1496da6c2f400a8da703155667c627fc520f5", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1273376399595683211695357952" - }, - { - "id": "8a3d17a190fdbb24d2f3a92996e97aa3bd6e151c4ac076a054784137022e37f6", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1009737719118810558147067904" - }, - { - "id": "29c60e088d531d6b17204202a08f5bd405dfc2493176a8d05251a0de1031c88d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1069611034331182067591151616" - }, - { - "id": "2d34cf78734a23c642685ab290c59425b924174f3a917cf98e90ad6156ad0dfa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1180262202215928510365564928" - }, - { - "id": "46868c0ed41b9273d13e2c6889b9bf338be133e8c40c395e7d59136566ece00d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1095180637658542534572900352" - }, - { - "id": "0b011febd249f21ca2c84151e9fdfd46096b201dbe10a03c4273aa6e38ec2df7", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1149632862874791413154840576" - }, - { - "id": "ffc49c13cdff68c47bd2869ffb6d1b43d3e529a68df53d157098f1a425fbf157", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1777824647028158654066982912" - }, - { - "id": "dc79d3fe1a598ecd096d7bdf29b65387097b8e10e4e3619c8d25b0b9fcef220b", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1048109060487597219070869504" - }, - { - "id": "8be24034d3e7856224a3d2ebca323a2424ab4370f3f29443be751d40f883abbd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "680d0c0b1a4a6eb6cee185cd6c0176ce4fab5d0e74974ddacebad8c5da47f4c46f3da33d3a64", - "value": "1010916748139830871190110208" - }, - { - "id": "a7859450837e3b460845ba4fdab0fd25c9ca993752517d0c8fcc80d4ec610d95", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1017431498505868495606611968" - }, - { - "id": "a6063d49e04a0db303048ecf4d636947b6fe9d51238e4096e569b39398cb49cd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1002069064076447352514412544" - }, - { - "id": "46bb2190b119aa0c84b0abbe1c61af5dfc1e88f73ac6ce12c8fa387e3c2f885b", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d", - "value": "1011072580124447460103700480" - }, - { - "id": "549f30fb69f1ebd775f5b01710bdb1e3547a9fc7eeb4a686afa920f31ed89c70", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f", - "value": "1004537833783042301567336448" - }, - { - "id": "60226cfbbc1ff22c7c2db35047bcc9d8acf91481e95a8bbd82fbdfb5a0575cfa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1055880685060933056104890368" - }, - { - "id": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2214843582313188321252081664" - }, - { - "id": "b5d66f2579c2c2b6b1d296bf8ef44d81fc342a66e3557973ac21363030cbd6a4", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9190630409181075968544997376" - }, - { - "id": "828139fad223fd90ee28c253c8e67b50ce4391110f35f00118e1ae6a8c2ef28a", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1214885995563765107168116736" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218184, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "150000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9XiVOZVcFc9EleApV3aCA8ztX7Nel6qcdraAMzYl6T0=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5542949651058464152195358023680", - "unlockhash": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/Fj5fK89XM79ZBChrI0O9S2Kd2HIMW1XvR/s4Cg5mdgk2oypN9SYuXF+HfW3F/XhfPrPxWtc5ECwFTy/IRI3Cg==" - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cPjFVPIK6KL7nqFa023sswaitVfTzm4L8+6KZ1BIf28vm30sIJgAsVPcJC3Hxmo5hoC4cTpOO6J5AMAvYm6OCw==" - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lw977lhyNNz6/mA20+EPTS0WfOkAAdU5FBperIAYXOicgb0VkQmb/3W7L/IwbNn7I1F/yT0qcF9fIqfZLDq4Cg==" - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DO7ggjlNdgQ/Bg2cYpar1GNa3biYkyRDz8DzSaV7vXsX4yhjvG3F4oiidT5IE38oeK8oonXAOJlp+iVZmWL5Dw==" - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1Le7R5sM3llyWALJZhc0y8quRTkVvp61XXgWPQIWOPQcfRldJ2+7gcnuJBZYWYWmChu6WVMnWUAvl3/6tM26DQ==" - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZNsWSIQoTWpX0L6dIznVxTkk+35aLVX6/Xmnrt9ktPblkyk+v3ibdjVJFNU5qs/73pUA+6gWYDrLWbnkjqAqDg==" - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Bs85Hj07K44ORn2N3mtN3/x4sn42du0PGd2lsjADfrLHS6pVoIznFMxPRVzYwsRPubsokbQ3ieueCY1pe7rvCA==" - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NdoMgUzJETiY8gXDmBXe7fpM2T0GUYjy5VAiDyJjInmnCXsS87GK/cnVxka4PNPC1yt0FDYLYP8P2AheS9enBw==" - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Sra54r3+aVzD5MRNq32E5FQS5q3GQIgrWeBuUoGcXDA1gczImmTvIte8tTEgsTmlw27f2UvMhxn72RUjrd0bDQ==" - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HFkNFTvWZdK4gqkGgHA91v/VD0JgfVIILcLSsQ+a0ZRmscqyXSci7Z7yQl69iJH2RfLPNO2t/Cq0PyRoFPGwDg==" - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yjKOEuOPjezlPiRUYvnA4oWs00GiFtYz1k55Z/4wXV+vh/2UIZHe05gxVoBlsTjUUGVpUgUYp0wBeSqDHza8Bg==" - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "72HohwXNTdQooSR3wAng/YEuRNAzT63rdAoFr75blLkn36bRlxlVZQU+fSHv3VTX9ew9JlPZLpqbmazp0q5AAQ==" - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/1JUwKpTw88bP4K/TjFZJHCZU9z1dwZn70QYRPi5Z6bl8fCfL2kPuGaEybpO2sa1vDOQFPpgrxIJLGKkjDbPDg==" - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JTAXaV5EcxGkSo6RMqo6VlfIo7ZLdrw/K1iNri4O7c7vU1dkdLhDluiKNGu3EQFTx7fqkeuGU4IPFH2MIMjUBw==" - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oroI4Emr0B79Gw7tjWVzHERCv3pY16a/k8IGxOyv4pq8L3hl+uqhBdaAr/5oxFUjmanNK3Blw5eKMoH3A4clDg==" - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qtyTi3FxCAUOuiI6v+9VhDg0uzQ7eqI4okbmsy4KJe9wNvl5VpqBUIB8dXJQFDyyqfSDO60BP/38ZN9wcNclAw==" - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9zUEYDLipZb5x6wpW+ka0HywsLGpo2MZAC09AOWuDOTCwvdnEQxJiUNJK+bxmei8qB8rIXoMYkOxVAtBkDh8CQ==" - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G4kW9s6/gbukcNkyNkCF0VDSZ+dm/RJzz06MgcRBpozEqq2bVr10M4q4VldftYMJXA8tPWSCr4j8bHy+HTYbCQ==" - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "T1RFb/jUx3sB1kuj0Cus9D2sLJDkOdkIrcy9X7tCIRkO3lsgPtLIBTWovw4gqzuhpxo94Euv19z6dQo+2nEABQ==" - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "58Mlubx532702+HPB+TDYSvppd0tJpEuB4xCkAwxlGFMlEZwGjWJriwjpVbZqUVQ3SgYFsJLbFBGJL9em4+8CA==" - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oJFNl8j23M1arn/CNJcFhg1DKgbOlKI397hvZj5En35YbIietXM6dAvCSbEELQlW3k2H2JvBx2Aof3U6ieQwDg==" - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vVL7b/KE+HKsbGGkci2agIDMVIK+eSa6++bW9Tm2tC4u2PcjL0+uGHPb6uV45/kqHCib1NFOmoc4ZUUIPXe6Dw==" - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "U1hG7sPDYA7lm1U9uVFzapRMac8ZmyiwDNxaIXqVNnZJ0BSqQ5huODkmR/PfaPdN/1Mv6O3O96ko+XvnNDR2Cg==" - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QpSyn+0B26MnmPRpoW7UZz5c+sN2QqtE/KV8X41eEfGYtr6NbuSin0NL1ihKqjvuOK+z52jkIixRPZjgvdsbCQ==" - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ELoxK5ML9wdT3f3/gFuWc8FH7iJ6KIwXzeDC5VoWrBmtXQ1fSAc9QxZfb6NB9TazmY/0lfAlAZdq4s3nX3e+Aw==" - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AAcxw9waMX6I9EGbnLG7XZKXuLS0OM0+wnLID2iTAf+w30osL3yBM9U8K8S9vrA4OCxFFLCMr8Cwq46v2tHwBw==" - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "a2PfsSY5eTDy4hPF5DkjPTLWTqVyMABqCjAn7KKlwR7HyyKBLt60qSgCdADzk+lrhh2WHm5l82zc1bjs+8KeCQ==" - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qxnx/6coupbIP8KOrKWqO4RMjJFS+c35zSXouVBx/JZTe2DYv29ubthwJKyTtZx6mS5SE/2BIhKIytpJ5tboBg==" - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bKFR3F0voOvIxrrfbkkPhkDhZIBDfbD6yEWx0+0unCnCxrMDTdPvwhU+yxiZ/I6KmBMIgZbCxcWP9olv5xoRDQ==" - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kkAdd9zoUCCBiXpjf3aEpcVwnMAAHiIV1euLqPxpjAQ5livPHwOgr4sB/8mPkJzOeouycVnWpoc0AmtX7/GOCw==" - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6tDPSTTSFMngRxN+Oq0maudDqku0DdAKzbrFKjUv97ReruO9IKaSrgs6YJ96lHIbX2mENYmXqgp/2/ijA88fBw==" - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vYRZSJmdwbrvtC02cRr4r4WGlXu5g7XVV6PTp/Z1bfGHH1h1TZVQXX5Vfsp3xOgOvAmcBheJeHQAKeMeBs9OAg==" - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "94DTtj6OpvhhU5HzoRUPKuu7iAGeNv07KFNBqorwvbZK2liUsW66SNZXtow2RTMe7Y+Lh3/Mr4vx6myhQgsCAQ==" - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cbox+iU91QubHpYCzEYVeAdsL255JnuVGv2NDmg9r7yLjX+XUn5jLpBfQwOofIYGzNcvJdyna6eH8JPQVnMIDA==" - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "26wUHIjimxRxbA5owwjS6/gFSbp8+kBQ+YfxT1ewOorVBWfzgHMZkjHItJi/GNrRDN3BvExa6QiVFTbfqPRjCQ==" - } - ] - }, - "transactionid": "1fcb35b160b1ac3d483f958bf5fbb7f9954f0574afcc507284850de0c529cd3c", - "confirmationheight": 218041, - "confirmationtimestamp": 1564428072, - "inputs": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "2dfd28e09cdb1f5a1dd794a130a65663d4f543cec4143d92deae127cb96af475757355e32d57", - "value": "5432175930916906977014389432320" - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "5504259017681547906286354432" - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3561990578501193094771245056" - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3288371219855822684210331648" - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3282640337140925181552754688" - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3274398471743365783324983296" - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3267594308245081556999208960" - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3229786548205620783327739904" - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3229057446346631357824761856" - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3224950119743171155799834624" - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3217982948224005864807202816" - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3212147977209125452763889664" - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3211091616739899893979545600" - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3208739631303085708239962112" - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3193915442875237908422328320" - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3183610962657130799572189184" - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3174493886247772046279835648" - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3173885419322656216393449472" - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3168626979692914659830005760" - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3167279906677919652855676928" - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3161755590363353564714106880" - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3161065166957131070162599936" - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3158033115640491102175232000" - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3152653459423747507828555776" - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3137357948729932032604372992" - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3136750578839844021629616128" - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3130597251106963438274871296" - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3129974421724445266707218432" - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3128791636860806171264548864" - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3127386385022183208814379008" - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3123927052770884670640357376" - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3121946699926109941066104832" - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3114897708902449756072050688" - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3113015151872237160116518912" - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3100745155003488561656758272" - } - ], - "outputs": [ - { - "id": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "fundtype": "siacoin output", - "maturityheight": 218041, - "walletaddress": true, - "relatedaddress": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495", - "value": "5542949651058464152195358023680" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Z60DRZUjk0ghKauYwJlStDk4ldWDal8dldhoniYMAFU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5542949563558464152195358023680", - "unlockhash": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SdgEa1AsmOXD1n8ewyHrQYWdgfZl+MLwfRM4v8AltXR39tVYdXRlusVVHhDWn2lpm1nsq+m/4rX/yWTtFqbgDQ==" - } - ] - }, - "transactionid": "b377e0f2b4713b09338671d4c9379ea56ad4b905244a6c51cee26c4d5c8d6f06", - "confirmationheight": 218041, - "confirmationtimestamp": 1564428072, - "inputs": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495", - "value": "5542949651058464152195358023680" - } - ], - "outputs": [ - { - "id": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "fundtype": "siacoin output", - "maturityheight": 218041, - "walletaddress": true, - "relatedaddress": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd", - "value": "5542949563558464152195358023680" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218185, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "SgHmK9vZF3HUlrC2SJvduGtbR5EnOlAOxl2gKcWEWHo=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5550680018129365468243192289543", - "unlockhash": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hJfizUFaQh9irwtB9+HPZhrqUYIMgiyUtY8ZmleikAqbgKRdU5H9AMO+oOETdoH4TXqjmyFgDG/nE3CNyr8xCg==" - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "w9QZLJq4PxyETQ10scYdRj9Vg1Uy7jtAHrdtpxVE61mCrJkQ5jEBn8l5ATDiWrb6n/U9Yg2OJRSaYX2CCuppBQ==" - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ho54eJ7aDqFpUBRW2coVs3/lTiIMFPolBbF5B3CBNyU6/Cbuf3VSzxPjaNoPho0vOyrMA2q9HDZt8aSmHPfGCw==" - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NLV0UvlPhxtNwBK9tTfpELbJt96kan1zTlQ8STilh2TeEUfMFrlWJIfdBGv9+FUpxSpF1PwEEQCmogoxqwdECA==" - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bwhsSJuYzjYjb1GXl1q2HWebCk2OvvVA9Km2Ql+oI9K8bCPCAv5T+rYJqYB90n8R7aUj9GBLbj3d4TgV4HEyCQ==" - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kaMKHyvWefUwjRfU7Ny2+WH8i0i0x3gMkr0WGuyd5iZesr4L/ts4uEyrZBAHkEcxFTiDbifJrw7iwEAMsA7jCw==" - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Fi0+qh21DCetPP+biuDsIgUOPNbmP9SgnzGFriJBOtGvPKpC1Loq6kOsWhSL5Ha0a4hRNAMkYAEevfFsBnwUDw==" - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RWU5OQnro1wlG82f4qj/YHlhKq9BpGRE0/9vlmPF+TB6VxVkw5DbssRaDSZfDULBdYKIuxdYlg5YYbDxzn7IDA==" - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lVtNr7KwOWOQ7+rvhfRnT5Am1AxgyrnKuzOJSrG34z2GCoPJLhas9f3yVZx3iUTHN8F9Hp+scc3pQcfEiHalDA==" - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "c+VEKwS3W1NRRHcgusemvw9KB2ey/go6/QD3KCiY7wD5jqIr0jLKPJP5+UDlsMxHdfgjffSScDlRbHNB10WGCA==" - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gtjJ493nKLbI8zRbc0v+nK1q3FQQXsNIUfAWzCg4AxCGrKws7ei06L9E1jMkK+CRF8aT3ZkNulVUB8hLWD1xDA==" - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XBxb7AR1F+Xa54x7Us8Xe77FJONqZKJEMTUcc0i3VOIN5rmqJAN57SnkTAP33IBn8Tv+LROkBkdI2QRNm4t1CQ==" - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+fFJQyymufmJZnAL5pT1lsidFCJPVsPk48IYv/OZdYHrsocQV+23mDFFBZHQENIYkAkERtf2Md/5xe/Lt2g/Aw==" - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "62Foww9i7aL0oMvK5j42axY6Qsl5eCvlmzeo+rDVV4XzQtOUjBIqjOr3037e68Ur1TAmTo9LBJ6CzY4zPJXUBw==" - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JTJtgZKvZxyMC8diTHZrG51mrv2dNxj/9uF4L0yKYeI/wV4rlWjAweptA4lQGJf/bEOBigELASnFTvx/UaKDCA==" - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Lr4HUKzLKpqDwk+HQnaTARTcF6lNgoZ8IhN6UFJjk+Mp1NCNKzg9GqaAx0hmAKG5Zw0JHsxFdDv0mZ8Ypyy+BA==" - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uLYtyBq7SK9k+cckDooA/Ls6f10cFFvLsZkE2NDG5qRHKCW74T5fMKQ1SG1P+SzebFkjp95PHTxW+LbcBSmGDw==" - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "20xZBtjXsHl76668BZYoOyi8SvnhyipjiHE+0hRS29I81EE3NFvr+AT1Ddq7E5MBLst+GAkXqlzORhviOl7JDw==" - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CvSMDUJq8v53yZz02HsmSfDnqR/0Jw0/aF4Insx164CBFL2R3TWOUvnTSZJO6M6y3rprIosDiL1RPYXGBLkeBA==" - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ezuPon0yezz4KrcwB0f13s7vqbRhCj5LjVsKvuujjCq2MGTgFKty7Ch+45M70YJGWWCdhYYna5jUy5t/RdhRCw==" - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xD/l0pnG2LweEPpb9y4SwY6Zyd0FjjrNJVu0Xhx9MUTkt9ojbPBGZCrg4ltcGZnXb7GXuQk/Muy0Pr13M9KZDQ==" - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bd7kKIc3uKzCUXw7+c1oIOsbNiDJk98Ao+Hrv4p3Oim4mk/sjIZT7rR58+6FWFQIz+GB6EIlSgS7PZrNzeOGAQ==" - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Q8AHEAL7B9mnpWylVuhcrMkpV0Egen3FInMD+5Ibu166A+YB+N/iXDbWFiL4len/9sx6zpi0Z94sjK2KFv6VDg==" - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Ix1Wpygieu1FEPquXw9tbqC8Xl+2t1BuyAUyGZ8q+R0LH3XQ5cPxIT9ggsgPfqjial8E/XJBqXKrlzRGWIBCCw==" - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MccHI6cTKN5lfVNQ6TQa6S3jZ+EhWRe+eAyUDTnlTvMn+XHDkCMj0fAdbG56nujfY2GmaMnNhHIqgQ8LPp0NBQ==" - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Asd2ri9Bm8XUrpI8Q+pm8D3UjABRgWoxkwCJlD5CvraRLqLSSsGw56IvGXV3i0okI9e5l25jbR4mreAh8ipOCw==" - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4RhtQIj3NA5y7OSa1vRtOQRmKUOM0ELoWX9GKG9m3ANrNFo32nDz+FJhnZgT7cNPt5t74eB5L1O+NXVlG8KAAA==" - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Atmz7WY7dRstcK+nRQnIkxt+vuTDOWM6BRQdlPvrOcrRPnFUEpf8YcVUTmNDMZbRpdBPkE5B8hN9Ig7j2zZBBg==" - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ncPabmrW2TTxCVjtPhl7ztTbc8cYUUYgKzxkdV6t6EytcT+Te0flWWhw4mqwE4tl+bpiQmr1cTZiPXCdgvJACg==" - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/wn/nalNoBZpf6HaONSnuI9Y5jsb8VAqOQJTFuE2BtyMf/BB6FSiNur7GHQsVifB++5kneZ5pmfSXIiUGD9UAQ==" - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ucl2Cyk45GOiM2lj5O779cMmA8ethBjh703z74oUSwQOE7rxEJ9H2XOyxXmYPUSpnHo4ixGQuzI6BY1DnNLoDw==" - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wvxyAOh2iFZesEOZ4fW8FnLTlR7296f54tWa0qbEt2zeRNSxLzwP2G1ThvHm5H305PtDKs1XlV7Zb2DlbYWCCQ==" - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JFJTuIAzUlbmXsorE+nS38cpQE+6Qtkz1I3myvWvp+TNHXyxJdOW5nqm49Y7U1McCMmGK1y2fBENz8gz3UjnDg==" - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "85lt6Hz1Hv/V4Bn7SFeOFde5zuvXsXj26OYem/wUJJ0Sf0+tthX/fPZSuXFw1kbBJoaUA13DBF+PhFx8X4OcAw==" - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/jm7uj+fmk3v4PPlSyal4DM7bR1RMf8s/HfUxHWyJk9wNaleBgPs6AwzH4zuYbK53CTMh23ca+4ACrMxXm0QCA==" - } - ] - }, - "transactionid": "a6e4772345f7da8415b595d2249f85d2bbb209747e520bdf47f3fc4087138f87", - "confirmationheight": 218042, - "confirmationtimestamp": 1564428203, - "inputs": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "07c240542b65db6feda6a59768838a5dc888ca78b8396a50edf2b277700ad8d7f7572291311b", - "value": "5446751483434902796541962852615" - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3099714267267643704430559232" - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3096143119509120656552755200" - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3092687553212140693057699840" - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3091782219052817128641003520" - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3091159159630118311912538112" - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3088379971410822680910233600" - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3087703968194453694190714880" - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3084216905448530675759054848" - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3081994202758995517720494080" - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3081023501472644106630987776" - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3080057409761244787886784512" - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3070216659470118832746528768" - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3062931692696521664154828800" - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3061962156728214619311570944" - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3060625698061619275126276096" - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3055866468140838584041078784" - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3054416069605585993911500800" - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3054025682227114814180687872" - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3051776725451925742206058496" - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3050353832177095689860284416" - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3049962809392120417012940800" - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3047340500830891075063250944" - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3038361740162398792749940736" - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3037191256144532233655418880" - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3035728842957115764410155008" - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3030336176656376588278956032" - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3029593432549038995508559872" - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3029217968567425705491562496" - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3028354756284659680111755264" - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3028015970718165652635385856" - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3024521267641755432009072640" - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3019610762136738360471846912" - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3018418090764860456678981632" - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3014843857379025373919969280" - } - ], - "outputs": [ - { - "id": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "fundtype": "siacoin output", - "maturityheight": 218042, - "walletaddress": true, - "relatedaddress": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd", - "value": "5550680018129365468243192289543" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "lVdofb3+64wfQwOwVXCt4LqIsdnLKQJ5LhM+tAh4qa4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5550679930629365468243192289543", - "unlockhash": "946eff41682d7a2a789532bfd4b94b4e82f3c5e27ed01b38db9c382ca6ce0573e1ee99c7bcf6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cHkjH1uvzSc8f4EUQfs7iT7hxVBfrRZXVUG4i5qvuzQPuVPyES+kNe8w2al+BlOroW3kO9avd0c0dOD7O9ijBQ==" - } - ] - }, - "transactionid": "a767d14c55d099be4f3584d197edf9a0863638386725adb2d504853ac8400615", - "confirmationheight": 218042, - "confirmationtimestamp": 1564428203, - "inputs": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd", - "value": "5550680018129365468243192289543" - } - ], - "outputs": [ - { - "id": "aa4bcfc663029472f17f6440d63937ec7febd71a9a6e5be80d9eb55f9db112ac", - "fundtype": "siacoin output", - "maturityheight": 218042, - "walletaddress": true, - "relatedaddress": "946eff41682d7a2a789532bfd4b94b4e82f3c5e27ed01b38db9c382ca6ce0573e1ee99c7bcf6", - "value": "5550679930629365468243192289543" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218186, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gvbWZ00J97TkZQKGi+SUIWq4hempzy+JoVKaVtOgyqA=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5581516802865427423962213769136", - "unlockhash": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qyFD4mGJKgw5zhpibcGKh3vtn1n7lgJFSXaRrlLrr0NYmtnDYKFgexGgx79w0S4z5ISBl800MQx7kwqho7aPCA==" - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qJj4ty7/C+4xQk3J/cRUF+oT5gWbJc6yfwB1OWzYTZyFXBzmS2hSJLacfI39qjI8CzWseJ1N6C2gLI32UOhdBg==" - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tbTo28QtN53GJoNM4Cu6gj/GIGlK7CyPTsbKPMv/WYWgCoR6vc80IXbXM8ogFw/BUownMwLjrst/wseJcsvCCA==" - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JGaDsDVDQCXkXf0GUmOmsbm3US75jn9yjd7HMCwYx8/fC+hT3D5esnKyNidNjSzSqoiQL1W9pJ0clw2Parw0AQ==" - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uaTIlIAgCmEKCAjToHxaECY58unZ8/g3tw16glyvWC77MZ/LMj1BlahZaxePJKQBCMGDAugHaqKPuUe3SqVkDA==" - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+IFeXC/GOGrJRFgzolsltXXX3Jj1fNuZrBx65P/ITd6pNgrAbcawDLjQSEgmqo7+IcfmTyZ4Yx0DltG//NQnAA==" - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JVFkVIXao+hg2Iu8CmhH2oJkSVgX5Qnboed7w+rfFdlKlEtMXbipJ68QCydmRW/8ZEgDKd/XS7+yRQs9nkH5Bg==" - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6z2/aYrqNOEO9L0ESawQlFTX/H6W4Yhoa40niX1HvUqWOwP20tawkHwEdtGF/HkHshtwl97P7qsQIxdURmTaAQ==" - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WK1BgYi1H5O16pQpuZr222iL+2hSA+8i9BVNrP8qLd4aoKyiDq1B8yQudeNHzkWZf1II26DJ9CtNqAMIUG9XAQ==" - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "224lHvhdRHYcu4a6ouO218+RdHAMEIQDVRafx0Xdpk+qoFUEWIX9iRrmagqbjq8TJYoUA3RpbQXDxMb9pIcQCg==" - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tgfLanwBEBucQDL57YIPsbkYDtrvz5dePdJ9LBVWUW0Zp8eJ1zNgKgGtE6/wBmFH5nthu9dYdvmTp6QG9ekKCQ==" - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "S+LFLE0+m1ctD4aLHetqA+c8ELy+5CtDyp0l9KBdnlQmrKMDRPdzta5TrQZAdOf4SHTp80/ES5ZwVHa5TuIPCw==" - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SyV0qqXiZQBIHIsb9jRvOa3/ogeWA06ihcIcA55GH1lxgNQ+rFZWaW8ZIIxNre5lK4JYGIXuQg8gdqPFjTUZCg==" - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gCQiflDgNK76IAkZKsdW4iXvvWUg9K6s8woO0VeJuGPs4j7zQiuRGicejNmgbpRVxaEHsbhxhKZr8FRCCdPoAw==" - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "akNPFBAAwb3kQaYCQxwZX9GgrYXnjtzBNVg48QeXRQ/bdcggrsE9fnhV2LEsxF8ZXboxpHB+MBbUAyL2DW9pAQ==" - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VkZui2WExkEfAbu3de7/zggAa5Wyir5XUstQoaO8GrGShnukjetd6CvjCb5o7wq+mWc/kw4uGn3nRfluKuM5AA==" - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Y7i2uHrd5A1AsUFJ6KCt8/XYRvO7+pKH3ZBHnrSzr6PygiV3qNkQdgNV2Ue4h6u+RFsjMC0wSHjbvocB+0WgCQ==" - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KSJ18SWtczNBGMp/R9SxEEgV31ARyExAS2NJb38H+1Duvmwfu/qZD7WAsAZ9ZBe4jBwiedqwJKunNK2G6JkyCw==" - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oHXC0EdfcNJVdY2XFrwVnKXCYj1Vi4NOaPR8/lcevTMqSgC7ul6E3OjPXmY4Vrj5r5zYM96z3vZmW7G52kiqDg==" - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "U238elVWIrK5d5Tnc30b2xeJ04owV6cYgQsJY+3dSJlbl7dgPypt9iTJ0Z39kLsue/ju92Xz8hmduhN6p/muBQ==" - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jve4riY50LyyqjWxIPP53JAq4v2OTKPCGEnu//6bjPCLIgF8mTvcJla+er1El/5saP9NK1oSC2e1uffHII/pBQ==" - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WZNaIhps5QQBE5cmEPIzdCV6/cgx4fuRvaWamOpDweHggRgiJQoFRo5oqtM7dcumkQzJYylMCs1z0iM67fqACg==" - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IZGk6XSgCVLz7+IR1WRaQxBWrXHE06BDPjPkAUqKrhc+LV5/MwRu25XDsp+rMA4QaSXJjwHokxKyL/u3nxx1CQ==" - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5V8Xj8tNYYt9hsEZzMI3rtFhI0Ksbcr2w6m3XTE6WDYy9PoMuInMIS/Qh37XC41bDrCvDVmIk9NYrMNcGBn6Bw==" - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bJZKrZ6WGEcaB5tCnPSfaMlOjWgCykIJbpXDcmB1XokR77xljGE0B81Qc65dAVuD7wmf+h28v+L9XguwqY5DDg==" - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AkJkMftEw5DPyyt5xWIoP+QJcpFBsC1tqh/H9f0pBUIcTuxOqG4RP9zLflUZyw1ODo8a11/NRYV3f8UCDhLNAg==" - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KDIhTstUBaKlORHtAZ92hwaXiqA8ft/TE9yI6QueBLn3lZ57zgzzmGckE9I94xdiXqA/bAs2zDmP2TsHUFcABA==" - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "GdZNzkrLxfeOSZNMyugXmZV8UVKztIDbUuL8aHSLJk4JdTN3FxddhKFmraBNu7n3p821XJ2FFj19CA2Mj+orDA==" - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "aPH9OMckVQ2DuGyFo912I6GhFYz8kBtTgrny8hsRVnIxO2YK8hPPCi3fbl9PRVosnyQW0LvesEM/MYM8vzl9Cg==" - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jUn1h/JuDMQLjmXvfsjyWq14+Gi96K9mv8ta5Jp7UK3kkDQQxfAQPHvZUVKThXuX9T1fu9CFYB09/KWEdpluCw==" - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9bRh0O2rVlnskHuwTLm7SHrxFnC9jXmnpJaXopzY7GUxszXTtcrt6vcsv4rnId0LamJsLwRadsWYri0rXKhUAg==" - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "mHKpMAvkbmkHAwXsguSw91aB1rcC5WyB+O15nv0HJ68ObNcyaEhCuDBoT5WIVhRqKHkCmhrDtV1NqD+HLV2NDg==" - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4jD5D1A677/ds29E6iGWLn1RBgNWETBl99BnVYgz8lDyuB6pDVTM2XL6EANTBQhhpLHVnheZVtRV6A0CbMNLAQ==" - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6omDvNAm7Qm+6++KUt0Lw4QKepGa7ldvllNMb1PHGHY0UGyHQvsO/S2nX6zINDgi8iIJzfhCYJoyg3p3outXAw==" - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "fztwZ5oLytaDQIqlvGmW3U1eZ8AqlmRaUKX3NVrFQ+UaR7lr8o67aBXvRCw8u9E6J7qYzbt/oDxvy4uh4D1JAg==" - } - ] - }, - "transactionid": "533ce70d4c98d8d3730ec8b7182ba9144bbdbc544004b0c4c33c77c8fa8a53cc", - "confirmationheight": 218043, - "confirmationtimestamp": 1564428479, - "inputs": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "ea69363fe8ed22e03e9e950dba30ac0e3e03011b51c3f98a31c0c56981eb046266ec1691ca75", - "value": "5480448567307230777925007695792" - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3010124410047294717953048576" - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3007027077601224950783410176" - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3005563491886577990154321920" - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3003557902980846149471043584" - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3003190490722506505929621504" - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3000969074797142870576857088" - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3000570832619817661785702400" - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2996156019420657798491406336" - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2992680080586599228231385088" - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2991659432929396831306121216" - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2989320560988532636857139200" - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988581956732634683689402368" - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2984449777698965629932929024" - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2979411061827715593200992256" - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2977303310649900833676722176" - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2975117164020080004676190208" - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2974059430708051823455895552" - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2973977930633314970638483456" - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2966553881418962442286792704" - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2963672268972514311145521152" - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2963395288249635364512202752" - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2959959659185056468321697792" - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2958843761423720172824297472" - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2955871131184190051057664000" - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2953011007503480576882507776" - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948138689630928711559675904" - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948001792582063076338040832" - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2945010672961882690447998976" - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2944048705291189828544626688" - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2943548458414729815222386688" - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2943040729511355852217384960" - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2941558359180434828032999424" - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2941150025877846697239904256" - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2938711119957394269761699840" - } - ], - "outputs": [ - { - "id": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "fundtype": "siacoin output", - "maturityheight": 218043, - "walletaddress": true, - "relatedaddress": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129", - "value": "5581516802865427423962213769136" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "E6k/YvH5NGZHLchcH97JJ4WfXF/7cYIJcxkfIi5Y0eY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5581516715365427423962213769136", - "unlockhash": "7cf0f05fe83ad87c6918890fea4fd45125af63bb03ebf9962dafbaeae04da8df9927bbd3c610" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Z8L6RSv/mYhb6y2DEcOKlnB105y/2p/pC04JKKlFF1HXkRnMmlmIAZf3rmjd25/ejy3xpSYcNO8tBlQMb8aiBA==" - } - ] - }, - "transactionid": "92e90e94663bfe1f9c6d742cb6dab1cc856017db4a08c72a7e6ebc8bfcd9b9dd", - "confirmationheight": 218043, - "confirmationtimestamp": 1564428479, - "inputs": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129", - "value": "5581516802865427423962213769136" - } - ], - "outputs": [ - { - "id": "14936592c833aa38abf4172ec4d1f821b025c06bcd408f5950dc655acd57c8df", - "fundtype": "siacoin output", - "maturityheight": 218043, - "walletaddress": true, - "relatedaddress": "7cf0f05fe83ad87c6918890fea4fd45125af63bb03ebf9962dafbaeae04da8df9927bbd3c610", - "value": "5581516715365427423962213769136" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218187, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "/zTVYwYehP5iIDbfl8K4L7il2F4OjnXKAi6+69dj128=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5580281561182996661933319517184", - "unlockhash": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZDpG7Lgt+LRmEQkpHLFiz9ND0RWzmDmtFRMJ7L18gcChAKa4RfioFMOv2tak/JDp0WwxYoqyg3ybUITFwhP6Bw==" - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KvAUeBa0r42GBvZQoN7bnfi8VwLCTUnYq66//y6sWe+0Y7/owkakk4Hfr3YkyfDjUhhgEfWyVu1kabDOXYK/Aw==" - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "LLayHMP4bdpO33wMoVqO0CDF30FSHkCx0WYuRkcAh7jXBqpKkwA38UKa3iI1lzIa/3o04vkXv4tCH1PGiRDRCw==" - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "beOPmvIkKXfzDR3Tb4NLwArjN1sSDo7JateyBfnSzasIBLV1g9toVkibwZ/E0Vibjs/BQof+EmZV7YDs+7pyDg==" - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zkZchxpmLyk826U5mUhQEjBj7SvJclNw8Ydq0ja7xHFG8ds6iMIqyybu2q5COk0/j9VA01SVxxq1srZpVhbFBw==" - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yVIaLMo6uWc4F14O8M/zI1Al+7y+nRs0maGU8S6KyzkiIOXssN7YakxZwbo4j4dPRVTWC+bGO9LIydJq8R+XBA==" - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MFGh9RONGg4CLn8VTbpVVLLkW8JO8bgGirWePEemyMFk7U8UrvRzOq87qOPRHvQ9TzX5YEVpwgFT1JYQOVhiBg==" - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6M73JhuHgkWhH5zu16kKXjzgmqeS7AR5W2Tk3HrrgPAXmR8qGFObfc1+KJghcwr7It0HHY8M1/a1CDI4mq2mAA==" - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "u5nHr1uWVyi/QJxnVSYzPGVWcSqkkhtt93u38Qdh49piLJxqDTUzQS+ZIpInUfXLo6lZl/UAuPcrrsk8HBKxDQ==" - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "EBxjj9RTLlpFYY1My7VLD9MNK13wkrVui8XjVn58aMlsQc62NpSHr8G9pguRrqynWFtaQWJ5XI24ZDu5bBwNCQ==" - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "f/CZ8kyE1ohT3sUVGCf/Vb6O1zJsI1yR7g7+sglzjFn0JwUkS3mR2ZRqrec9nNE4i7nsHwSBElYjOqCMymhkAg==" - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uHo4V3fdIvc7tScXe5OSyapb6b2v4mYL5hYs2m9yReVUgWpBg3oBaw+24SaXFL096ycJ/ATPAZIOQtYZxrymAg==" - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SiNFzOP0r5M8h9nEA4LC882PTb+nbQiFQVaVkyBoelbwLqVMcFi0npEYU3b7Fcx1VZvp6GBN8ehb7RLUr4rNAQ==" - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "snXVxv56j+JjrPpGRXcOPXZkEhddty+g8X2FkwrSIW9SyTgNWAnIH1H1/Ij7MKiyWdDo6zHyUNp/qSk0UL9PDQ==" - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+qosigVUmrxg+4TYnlUHO2HjVrjxGla4oSKePVyDxj+Z0C2QruccNt0/Qp5sZqnCLW/QKOATUyOYh/2LrB7EAA==" - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "BiOL15Ghz6X50pweO5N8lk47AayNEpEv83lkp0ElNMGXtkT3G6+hiUGSf8XO0telES07q86o6zVQ+AEcYGPZAQ==" - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Tt+A4ksO46+BzEImMRarPjjE+utpa0sspw35lS/265a+8FW7RfYUbmVuWQIuh0i2eogpv3m8NZs5lDYI8/AoDg==" - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TDGOc/5rqOZf5wzj2V/d+msmHkMFGYYhNmooJroomDgUI82XXf28c0aJt9P++blfsz68U33oy9YBnksgZsw/Cw==" - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "z7LVVhCxb/7Usx7vUl0WNX9Tg1HSr6xeTmPhp0QfjmoKnDjCFb/aH4jMNxZpVOo1oqBHCMf5y9ijOPskMufoBQ==" - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "FRjfMlB83TOtz1/pPR6G+8Yy85ngwGyR0ylyvXQcg9qmjdcEIFgPHMDtroL7TL7YsJHykhwznvy4gFDJyFmQBw==" - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "b0cWT6sNz4rtCUZfZWYavbxe/33yIkHT2d+bmr9ZX/xfM61mX5T9t4qKJJJ4GWhnRq4N9f6e7EIMXhbRu+URDA==" - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tYi6W3qQPZwl6NvpwzA5HifxI56mLnxuTgecg/VuNGjlyJ61U8pXwO0VgTvKB/gbUt27j3+tY1jQtd1g++qzDA==" - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wpB51E3XPm4Gw0hYz6atmNvA+ZdmKwx6RVCScjuJxExpiCqmeQKa4v6Xv7YwMb+7OGRCpmFLPkvbtmks7YcyCQ==" - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jJm9blqctCM8Hai7eZM0zWUBFwe6NBDCv4QABIUGNt6vYxYhSbIz7mk5ti1UGOV/pf7V9pXUZ1wR1A3LWEEoDw==" - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DdJ1fftXTyfcgEW7rDHWChHaaHLIhiB0L+Nx1AFuf7NzqkDWLwLnAbsWAg9x5R3p364GSbJLxdvLIo7iZsdjBg==" - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NcidcTbEKtENJ2ZcqNhKPXsfMOaUlcBxeDjivS/CkHiG7cdaQS+aTUQS9PFvLECyMuNWVXK8Yw5PrwUc+yYrBA==" - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "n8ftfxRgMai5PGDe+gJPTc3ZThmI6TSD46/gJYKxJVndlMDvorUS4xFk0Vq5NG7o1P3aqLpE4lBWpm53kwAnAA==" - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "N6F9WQu6Hmkfy5lDf087eyTfqMzF3qZN5SHoK8pY2rsJVkMx8zC0a1O7rcI+8fVcxBuAmaluirn533vx5494Bg==" - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zTQkeueUQ/QoKKoS0rmSw1SnxVo5T6RPn9GzQ9VjUHWiHfV9EYBSXGeExbPapTObKeL6dCJ3NBm8j5a/lZ5KDQ==" - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "md8mZ/lCvWIqfk7EvlhCxiN5K7U3T3nqKNagOfBhnQCM2wtNSRGWp4ApTyRGf0bd9dw3Iv5YvQqW4+fasINgDw==" - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lA83vKwJvfsX/aj6Q4VCPF25gfnj75xRhCFYQMMawmMmDoFtksilr7Ph+/JQAJ9qpgfDPYU74+ahd+1YB9l6DA==" - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WAhs3jP9FN1i0OgjOMAXXn4GuDW69kBSnE3cYtnH5DaKzGyXcQ0s1lA0TpJm9Av4LjAwgRSbdnYLfIuz91xVDg==" - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2OoqQst+oWNxQonR4T3cYNY2X+p60FxSQ3ygPg7jVFMs4770RM1Tlyw3JjyQEi8IM6OVBGT4WRjDr5taEH4GAg==" - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZYF0JPMNde0dhILKaXUVXUdta+L4j9uCOIgH3kxUUkLtIYkXtb+dj9vgQcTVh1bhK2/NL8QKxG8RZnPgxvRuDg==" - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VYnPRsb7hswmY+FFGoXZTmQ22gAfpwMCmqH+FmkAIoax0ISxf2ay7xvHmmWtnYxF62XazFsZh4RLAVqCOd+AAA==" - } - ] - }, - "transactionid": "04cf20fa3021133b6d37327ffc3323895160e2aa227d8184b467c9e347d08b14", - "confirmationheight": 218044, - "confirmationtimestamp": 1564429190, - "inputs": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "b37c8942fafb65b8b3f254f394e6618bb0ddc1158f79cd9ece2ae893322b75c036aa1a834bd9", - "value": "5481875261793448977200259920896" - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2934355379656379228296839168" - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931544041206592677766758400" - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931436701389296596835893248" - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931396566237752302648688640" - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931153111427217087006769152" - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2930387591501526122492854272" - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2928869214428510736302997504" - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2927460846331478143146131456" - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2925798345542388252447604736" - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2916646912674579560074838016" - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2913440010436630305786822656" - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2913104205994304802574565376" - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2910710328059578321001775104" - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2902588514964225542846414848" - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2901025022189439206127828992" - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2900652579455621302679764992" - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2899908120850121606530334720" - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2898451618803285730720219136" - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2891197507302756691023495168" - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2888870918845773647366324224" - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2884448429503840399088680960" - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2878595452758124178389860352" - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2877562018982354701170769920" - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2872194534158414454842195968" - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2871630721161776237656408064" - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2870153228898583727352840192" - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2869570993469598202385661952" - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2864096948568023156966555648" - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2863124555896719130809597952" - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2855881673815782789675483136" - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2854007781432108101484412928" - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2852411093150979570035326976" - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2842147755440230996637646848" - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2841476665013691222887235584" - } - ], - "outputs": [ - { - "id": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "fundtype": "siacoin output", - "maturityheight": 218044, - "walletaddress": true, - "relatedaddress": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468", - "value": "5580281561182996661933319517184" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "keEkFzPfQ+OgPb4szXDT9wKLCY1t3t2QHew/u4CGvtc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5580281473682996661933319517184", - "unlockhash": "899d4d3bfff89c25eca7dca99cafa3efad8ab36a1b81569330c4a3c759f37fde0aded224bc85" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0rp3Pb37JoQrTsogJf2cC9r/5/uyfZFpinA6IMRLisK9fAWUaFooexaCmLuutpg6rPefz0cSh29PwzRiEGdgAA==" - } - ] - }, - "transactionid": "a7e67dd1255cee9c10667480b1f69a962ce48347169b6ca82b2b94eac9fc057d", - "confirmationheight": 218044, - "confirmationtimestamp": 1564429190, - "inputs": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468", - "value": "5580281561182996661933319517184" - } - ], - "outputs": [ - { - "id": "39c691bd3129120e7da6471d3222bcea55cd8b39ae791d6586c94f756c2931e4", - "fundtype": "siacoin output", - "maturityheight": 218044, - "walletaddress": true, - "relatedaddress": "899d4d3bfff89c25eca7dca99cafa3efad8ab36a1b81569330c4a3c759f37fde0aded224bc85", - "value": "5580281473682996661933319517184" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218188, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9/ItXrA5ijRe6wrrIJlP4wIXaJHQ77E42v7Ml6WfbuQ=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5578050616261157102733409241088", - "unlockhash": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zPzj49+6VFlw0S68bIWE7z6+K1mLlM+eTMkx/0xxeFQ8mLkZB/1gXF8j/KRLfNfylnRPun+aQt6Z5HtnVTOBCg==" - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "T44UuMlwUs5BqpK9TXRIhdhWMOOxgvc5/j/RtuP/TxwgtH/c1VRSDaM/KYlzFl6mh9+W+loRt+uN85JUXEsZCQ==" - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0IZ0q4k2suu2+AR1J3pj7a2cQr3diTVVYRxxLjnAf+LiuHVQkV7XwLKwnf6kC+IDd7Yzqh/5xB1MWCZfO9URBQ==" - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "eMoyOKU4lyAkN0n1Y8q2TIqRoXScEvp5XzwN599bSFOp6LEYuj9KMYBqVNBNtpDuq/Rhj8ngWJcxTWZCRBvSAQ==" - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/gtgA+P8NxuCt42zw8N/VDfQ6GbevIqsrjeEOxdoX+d/AH1zH+bNOiHhxtiADnkkoiAE1L/mjechCH0iiZbvDg==" - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G9sEP4iVgW8Q4ZgZ3au156KED8QVAq3VwOobAGRRj6E28GGYNilUbQL1UPyClxmZuzU2u0O/HwvWy6cI8zWkDw==" - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pSmR7UrNmKLdcQJOkqXiX6UOXfuYc7vfE0mN7EK/jCCNkieqQtavqPjGLp0JHU5NO6WJZLzsqkRNFUEZ9eWNAA==" - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UunkbV9UTMVzK0sfCasmrahuNoFzEZXoLk2bOZwnXIn1fthgDOJqwycsdgbbW1P0xpOtdFLN/TAij8sc7D8GCQ==" - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UXnlfRafQZhOXgNKOMz38+5w0Tc6MhZcxgkXoSrrcCf2/+qwl79D41kb7eEFfxDGMbHxAWxsYwXZgJ59+79mDw==" - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "y5oTMqqmtXKDFyPBkH95YuE/T/9LzGTyUWH5o4Bw8hEpnGs8K0keVSUECvjUzJ8IhxYcBqPuSbb07nfixGCNDQ==" - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VALF6OWtxPMZpD7HMW9HjjkZ+zw109j9BuBIi+PgMAH8uWK/yOSgLGJxwVElxCtp9Vu9zW4UE/+dzDUYdV70Aw==" - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uGCWG82gZVr3QeuL6gemQ1qQpiQGzEkje8X3Hh+odc4KxrL/hrge/xecBG6KtrM+TBMJWltYa3/iEp86skC+Ag==" - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "egYS1M9rRLatpSi7KCqkLRrhJhsYl0NslKSdhQNzgKYxYn56vPF7UyQX8tVdpp0Lfjqhr3RpgXNkPilDbOesDw==" - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "baSWminoB+S0UC7p37mfV4ROYRlxTvNckvb3l4KDpWRgic331NTGhLu70KlkQHNupZ8z7rf8K7gKXGCaNZwnDQ==" - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zZWAppyZX928qkCrGM6655wYCQhMIQBBJW+YfVMcv+qSNVzAiYcv07v8LzBNACGpqXD8Cc3yK39afjR+ZNdQCA==" - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AlVRtv7qTFXHgSSyCJ4RRfunhPwJ7p8ST7Z8Dgz29FHR6P4PbG9e8xKUJpaXOBQqPhfIVbLVvLgoSx5jqf8eDA==" - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vNwO+NU8IQlavBg9pZIoX0wg03+uSvUKgDMmGfNeIcklLSWno43K5G9SEEuQRZzaNesvwl1plgBeRtO1yKo/CA==" - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "J/b/t8HQdazhyTJXjk3oHQTJZcY1hU8CEqDQfR952+bPbYbHzeBhpP0MNxKTlEJ7TW0PUcd9So9dDJrc8xZFCA==" - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IhQab6jX2oEwSdeybL7Be/C9CNbowXVJCMSLOtrwbscUtDWCmPmgPX2N1wWymioRq4pVhOkDoLE/g+JtKJxKAA==" - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pe8Pz/RObaOJBainDm3EZRfN+J/IWLNjjhe6rlPsKjUxB3ko+lcXV98ormWj7ejs07D45nTghIlV1ZXeaWqqCg==" - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1q2Btq2DPMDy17SJr4rHrr46YEp/XRaxJb/ciICqoJ1nfpLbJRbqA8Vl1V36n6H4A20aFsbJTErw+05AxsyRBw==" - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "7Mf84oW/dOHcAj+Uo9eyuSWlXCaAVTAmKQcesYNpssZ4M+qkUwsVjEaDcHyYh8+Q0WtWzjGf99HQj6zIhT+hAQ==" - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "g6ac8Ti/9Tz+1EtpYCtAdt2dVSxT+hSEilexRmTvvlpwW/iH+cO3QTnPGZSsuim1iHvTZAajiEVXX/yitiTvBw==" - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "78DRfcf3NzARfcGEcJFfsZJRajN4LbX0g//FO32O02F9+Zl5Y+Zwms35D11mBwiCOBqLFW2t2NqO5vI3FQF3Dg==" - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IDT+zvLJPQsDvMPGUcJkrY2RA5pd6rLnL0B15CmMfCZGiRuC1Z+zDNpHuZ/ObYe24aa24XzYpjaAeOxkha1xCw==" - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Pz3CClyhEcPp98ZJuHBwiybn4vaY7pe9HPldZtjIg7jWlPG2PLTn4M6oORFd8HPZ8s6WgQx1sVRPOuRPJPrcDQ==" - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "04ExFhPNiH7rdvxFVXJdHJ5mpqjG984AT3Cuo9O2Paqn/3pQROu4qIHKeg4QNMtOm6jSDFzMHfcCLzd6cKCgCA==" - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AYPewGDuwcxDrGYLGILe5LAtH25AZ3v7a7GOOlTPu/HZIkB3/6pZsF6b5BAA0jeDrfPpGpxVRgA5P4sbA+tgBg==" - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "F/gxrLug0ytJupm5uQV1FJL4C2+OELItKLuwvD8n95wdeSXyQlw3UL3Y3ErS7xu5zK+mltB/tgattr1yYC/6AA==" - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4nzkKi9bttazjE3zZxyxpnYHphYOmh8fykodHHvFTKtK33v9KalT4GCJziC26Mvl4xglXF0UOJbG7CdYb/D/Bw==" - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "M5EIMYNXJhaalo+oAwa2VWca8JacpGkKvbmjhJPMxhrja7brgNp4JVlBgYRe/JVk2HkN9+yNlAsduqpFyTxMBQ==" - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qo2hYhSXL/XbsG0sRi+4zdLN68APsLS/kMyg4ann/a8I97VyWQMQT4xGLYlLhXZD6sg6G1dH7iUwlEXB+lhbCw==" - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "dMZG7UW8zO+WPDuMIK5vqRFxMkL0uhnMXHiIFDSrHUAJ1jZJj9qhTakuBg7116buFKznxxfMLgywOl5f/4jTBQ==" - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SCL81WsvOBapudGhiInDAiIIb9/r9cv/q5By81IoaUf3NqJz0Qr92T2qaL2hfrw+APIisn9E+uGB7s01EDGdAw==" - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Iv5JiaI9oxMtO30518ebwvWJEncQ7r5jW/YET84fNxllX7rMvhPr0x60ef1Qe0zkUzQ21FVw6fohPnpG2e68Dw==" - } - ] - }, - "transactionid": "b27486e2f803f82961b55aaf2e46ff2cd120ce1cd22a7714136fb828eb6b86ee", - "confirmationheight": 218045, - "confirmationtimestamp": 1564430372, - "inputs": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "be13ad858c200310863c8f5dac10d77214daeebc1bf50f74ceb885ee1cbe99edb38f28f195a4", - "value": "5483463298544888192091770701824" - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2840894907377376344431132672" - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2838171531168353284714921984" - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2830047060708953795839655936" - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2829474570929867863351099392" - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2827721032402566667405623296" - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2825684610379906261878571008" - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2819992118756766452285440000" - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2810970084215873000097972224" - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2809647314483902492098691072" - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2805990285861087047919337472" - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2796379239865750792785887232" - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2795983117285767381512093696" - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2791852919944412215010918400" - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2783454752093443892690550784" - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2782911267860196643685007360" - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2777867698187081412807491584" - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2776568160888252583238434816" - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2772970868332717405789749248" - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2769597292459358756062363648" - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2766133262002843176486830080" - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2763522353312340551772667904" - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762436110103514518327918592" - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2760143552510360494243053568" - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2759260047314753262171717632" - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2758685955867219497702129664" - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2758293312346691239787102208" - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2756571889629406500864655360" - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2754777909852550911431278592" - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2752849733312172835316170752" - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2747930309695655554198798336" - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2745396139161100426995040256" - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738780707474416633651396608" - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738334185833908748962234368" - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738023414650341996122603520" - } - ], - "outputs": [ - { - "id": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "fundtype": "siacoin output", - "maturityheight": 218045, - "walletaddress": true, - "relatedaddress": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf", - "value": "5578050616261157102733409241088" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "YrSxsYKVaGPzFRmvsjcQGp090Km6ip3myJuksH69tlE=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5578050528761157102733409241088", - "unlockhash": "cf448448abbf96860dee310705729bfc2f3d56fcd5bb8348f1dfb351712960456c0111f15214" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xQCaZMSxcNQ71/wwsAto8BrtRzMx4DF3aBUpZqqfWsuVM84IgrIbM9CVy0JBliFDQvNHwes0FtG/1xdai+Q8Ag==" - } - ] - }, - "transactionid": "1553d12d1acda5ec05fda47936cc64a3de7877d93d4daafa5171dc9e8095f9a7", - "confirmationheight": 218045, - "confirmationtimestamp": 1564430372, - "inputs": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf", - "value": "5578050616261157102733409241088" - } - ], - "outputs": [ - { - "id": "a01f419ee015afda9b1ef53fbe9aea034ea2e9cdd90922fcb6d83a12978bb521", - "fundtype": "siacoin output", - "maturityheight": 218045, - "walletaddress": true, - "relatedaddress": "cf448448abbf96860dee310705729bfc2f3d56fcd5bb8348f1dfb351712960456c0111f15214", - "value": "5578050528761157102733409241088" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218189, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "ONztGyI4X7CuDkiDJZ5+SCFZyHoLcbccOzTG1EeaZeI=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5605636945966174134918924888064", - "unlockhash": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TFguSThNV6AQjI1m8sLn2lVp23yqumOL5gAoTqIYyJdtVPPJtsES5uePShiyylzjAKkEniFQ9/3q3eqKXQn7Cg==" - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZE7/iOv7rGlv16bW2ojE5DK60h48s++N1B84yi22rN8ymJC5teq22xFTGpDOl92cCAyQkkxqzPhCQpzKk2hzBQ==" - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oE7WFIaQDtcKDE2RwLa283ydD8lfPzH92oVHsuUiZj4I5HMBy8cHs4mr3KPdo/EfvzZhdnXX2g1QkVK3mVzEAQ==" - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1LJ459VZS/6jpqUFUzQmntgTNf/0qnBupNa4/mAwzvElGCyjSca4AjNSpKY1Ia2FSL8Adnr/wGxnsPV1ikhvCw==" - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "L5OekXLXaRKOSgDtLaMKq0A48SAMoZfnKSBedG3Ip2E7QU1yIszGq5TV1cjY7zQoTvEaHvJo90q/1mvvIKkADA==" - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5OhKefLFWU2v5PsjquGA/+VW5l/Q45ncVH1pMftGX6BvVyu4CnejjZ5tZecSHgL+wU0ARvzkX6WTXMoESwFXBw==" - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "8BaRM4SHEEBqtyHj+d9W/JrHKS9LumiMV97UUN4WReVgSFiXi23nnqanpnjpo96NqWFaeqQBDJVKAuJUbGjlAg==" - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+8F7G8kCYJpRJwi9PPktHEgF1oJcGMfWlYpzJVSv2LpPuaiOP4MtkMrWnUNAIdA7xQjezBveL7fFdltaT0D3Cw==" - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "17CxkWzqXaYPKFtCYULgYnHBcKiGRM9z6cAdczgauP/V0mHQnIvZZaFiqQ3vufQwU14D3/5FkjhlCtyjAEQxCQ==" - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qLJgvyxnmV2ZHDJD+7ptuL3aYCsYLlGWAm+PUVmlnh8YJfgrNhGFN++knse69/TGgMU7l91Kvj1VZzyuTq1rAg==" - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6rnfQuHlBADBxf1JSA482aN4Cp2PqqVxC3oRApYXVp401KcJgp0U/roeTnTgW66E4INuEUw0MZhXGjV4KHIjDg==" - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WSQT2LIQEzrVtpMXsCMZqSZyTIk5piw3TY0rKOIx/uhHKLCxLNQYB1FZU+jpuug3xBFdcdxmu41bKQRaXotPCw==" - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "W9bG7w679GbzEMUG6PDsbHpgjnp6D3tSE96q1ohCnLXxAoESaRmPTst6roD0TDZg0d6jZAoklrqcACWWkMWuDQ==" - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9scP8LCQZrTjyHrouwTrZXqHgn1p7m1V3h3EZRcxVeOV2kS2APPZPElFahyoeURjegIfC79rS3Q0O8AUuVV/DA==" - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zLJHxD2pQRtAWydB/opWEfErCfEEzPyeAxGUD6fWWqa6oqXEFjrqtKR8fe178b+sNZ5yD2A+GCSll5IKoODHAQ==" - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AsMbI6EKEM7K4jyVTV3TRn+Z0hlAa/c+EOnsJLLHQttF/0SmR5CgabgfshU94/PH7wYOMejD3l/VTUiABPbnBg==" - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MH2Ch0SEuaA//eJrtCvlMFto15I84p5r7rvtHbkd7J/9m72RP7gUGr9xjJIQMXPLGL4VyVEzdzooQksfINc9DA==" - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Z85V3rCrtKRNfeCYqHbg4h0PfjBWOyZzY3xfDF8BgySe26sGgpOhQrzfSGQDjM961bJUnykQDCJmeie2mfQPCg==" - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/oGCG7lXe0HaWTS3Py+Wmc76Mj1nnT019Ha8V/nXHmO/quZWjXMQ48ajk4p6E8ShiP0Q0K7nTFROMoTrF7YcAQ==" - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0FT5KJFf7WqoH9ZJ+tLiTP3EONNtsz9kf/Ic9oSAfoM4ot6wDDJBus07KxuTR3FmisGklkrrqmfuqlfH09/6Aw==" - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vBJOqT/X6FQI+YDWJz8yCj+tjg8rvtmWy9D9UGctl8/zdwLi51gShykAc7dY2vPKNkMtp2KJn2Rf2taSosnXCA==" - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KPjEQB1pIlJ53Qq7k0GlhtvcsHDW2Go9fX9xoS8zEA760VMdxdUJhn9k7uC/QHr9aOySLgAHMDllJ1HDd1ipDg==" - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+u1qBu5bJicb4F947gzPo6aA/7kM55wvlzgk4Rgc0JsemQmuBvf4s0XA+WrjgJNpsz/861+RYoOwZFQKTAMGCQ==" - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "k6sQC5Gfw3JnOdbVdEFTrm+e0mnWnmlWxBVq2jqWP96zcYLSMQXHjb6mHyIvXdfQGAUtvs2OUx7EywAT9t6ICA==" - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wg8TGQlS+FeYZzecc6wjnqMAcDExZCozTIZbXqUDMNnty6V9/4NOaPfOimA3my2HnSS1/cb1JLbtpTqqs1hCCA==" - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cJlMeACRDBsQBbCBkNmYe6tGdgODICXRS4xSymrkXCw/2CD44uriMm7KuHQm7y1+Zk5b2hyXRdX7xG9BExj9BQ==" - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qPHnx/VkHSqpWXfYHvTfoFekDx9b90iy44zxYrOAprdV9LeeBB5qHSH3/IF87PKX6wzVgfFD8LEc/AbE8TeqCQ==" - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "p0XavBot0RbtH/tqg1NK4EMWC4dkemod1tjIDTG6o0DiIn+5q1RRat7jHAJ0kwP2ItKnfLH9gLGUBjyUunFYCg==" - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4xKIeKmqlOVtxNhI/9Tgckm64JAz4HuINQWsjLFjH1siHklOSGEqdceM2knP0TuBJNLWb1Tn8ZU86a2VXHQQCg==" - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RgcfElTFR/xyRhUUJZKdMULXDv5FR+iQzNOZbvJwLwXUcld4AR/vr1zIEs9R4NAHgnrGlBUZvRQ2sqcPx1plDA==" - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UOkvpJgVqdI3BiaBXBBOwTPff2WACOeVG6Guzj2UviSxNPOVQyBC3QARcX4M9T/J6jCQZqjuFPw1HkFWc/YpBA==" - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "EhL5Zls4uN4jmXh74Ydp9e6LdvAdQGZMWSKpFPUGU8z2Rq3LU2LnWGhARJT3uFTX3BqcjEwz+rphQLj6ObZxBg==" - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "t3tnH2X0LCJPnpi1Rr/8a0MLLaq5VsocLq8W4YmrkOH3zhlFJ8G5dV5k1U5YbHlFIj4MmHEdVl/ujDSRCptbCw==" - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OphLhI36lDd75MezajAPSVgCFB0blFjK4DauGQLZJAd2XQB7JUNPBmgvMHb9MtFB6GxbT+ClCNUd+5nfyKA8Bw==" - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "POwfCB2YW+/s9rRoOMsFVgiOSqNwvz+JQO9RLr5jerOo020ww3FJy1xkVYGDjtDuOBOCkFzOwHc0D6fgJeO4AA==" - } - ] - }, - "transactionid": "4d38c1f64a743107b3aa5e22260a1e9d972fec78870cd35510b3500c27dabc87", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "ba8cc4e7bd9faaab0f75c9e591bfa5f57cc6278527855930af8e2b0bf52f614bedc7744e4fe5", - "value": "5514714040928873609148906498048" - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2729434491676486602015637504" - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2728583056109378385649598464" - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2728580946852080349104570368" - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2726067149260569438209441792" - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2725688443272999151857565696" - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2725483459508029740726353920" - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2724215459135375404118835200" - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2721210206164989948452667392" - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718636551273186201287262208" - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2711776592975734828819283968" - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2708825625783154638655062016" - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2707591576202689815490068480" - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2706093225684536163234217984" - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2704395115599566364120973312" - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2702057305410224014678294528" - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2701504662093941254050021376" - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2687397933626297444386996224" - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2681561606814608124108865536" - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2675880197610022031421603840" - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2671876516130045662802739200" - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2671875932752814621379788800" - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2662463240567273380363894784" - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2658198818772696967455703040" - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2657147990850512180383580160" - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2656571071383454658156560384" - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2626015053031881260295782400" - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2616233168374181146935689216" - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604748042541934141308403712" - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604263700415498799892398080" - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2601642635577872173766803456" - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2598890819719234616544985088" - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2597382610074997023446138880" - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2594138100928621956166582272" - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2586473731125637280732020736" - } - ], - "outputs": [ - { - "id": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004", - "value": "5605636945966174134918924888064" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "F727k5yaFKRAHswky259n2foeiyHbLuXEyoGV6mu0vU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5605636858466174134918924888064", - "unlockhash": "66e9c972f5b4992d0d696fdd5f7c0c2fd8f06b4d150e6d30c85926b2a4210b1797f4e855ca3a" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SFCBaC6ARGAECjHeq5oSrZrwXMDjthsYdVfT7iENNZhGW/jYzoNif/Da2WFO9PQlB/XowuD06/wxdgtwcn6CCg==" - } - ] - }, - "transactionid": "7eed070dd71d9dc9be64ee5b1ee41a39aca34084058774330150dfb09dc82f2f", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004", - "value": "5605636945966174134918924888064" - } - ], - "outputs": [ - { - "id": "44054d2826ce7893eab92db04dc72ff49350ae1cf707234c3bd8ca0e278bbe80", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "66e9c972f5b4992d0d696fdd5f7c0c2fd8f06b4d150e6d30c85926b2a4210b1797f4e855ca3a", - "value": "5605636858466174134918924888064" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218190, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gcKm+bfHk9EQVq8EWOjcbNlLfnlJYs6co2WMYRPty1I=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1145878106147029565425844224", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1102318851264528308081131520", - "unlockhash": "c509e1261a2a9540b9afa9430d3fd7e61020da05b7d2815ee9b66a436ba7fce2d717539d791e" - }, - { - "value": "1163639016221779285800386560", - "unlockhash": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2" - }, - { - "value": "1006268335106967841149763584", - "unlockhash": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207" - }, - { - "value": "2761509429844246598523027456", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1201172946981756090430521344", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1025607320120120728576212992", - "unlockhash": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c" - }, - { - "value": "1440499355176807273817178112", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "1050580088557030213072355328", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "1095887561620408133749276672", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "3940173065732395494512001024", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1062752057890947849144893440", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1019130938445095933290545152", - "unlockhash": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76" - }, - { - "value": "1006583199063446242162212864", - "unlockhash": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57" - }, - { - "value": "1024031032447762262164701184", - "unlockhash": "0d71a2d2cbad15cad47b8a5c1937b2ce0985846053a4a7aae580d7c1bd8c1ed848ebc48b1ff9" - }, - { - "value": "1065813848481882414474330112", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1296348447205346970729185280", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1025583837150143513245597696", - "unlockhash": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357" - }, - { - "value": "1358563556914540918302834688", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1013921037301485903606972416", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1077281997857523665966465024", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1043243557792744676840734720", - "unlockhash": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc" - }, - { - "value": "1022312899357752468139802624", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1175737946179790031541501952", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1348385481257630250005692416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1057654383253204575825756160", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1408804516833766460019965952", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1563647742075426184136491008", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1708500185847514682028457984", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1082380796428430540331810816", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1650944352404688760197873664", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1205961469192098178174681088", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1100047127346320224016531456", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1149962400655720688093757440", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1175311493054693027249913856", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1074843838698394079067242496", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1205996599202946027691442176", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1090904970951696596035698688", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1445471823546950812951379968", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1002248846318908578423898112", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1232717017962546549522169856", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1170977953695309760166363136", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1110720319360016499859128320", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1125873414413084938530455552", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1019358039521587986734202880", - "unlockhash": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f" - }, - { - "value": "1031999438611480502637215744", - "unlockhash": "ec173a7917c20970fce2642782a76a6ebd10dd931856fb3bf8e45e7dee8b654c4f4c00a23b70" - }, - { - "value": "1426202656254974891987566592", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2246723016259082233000755200", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9514901257337797689414254592", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["236400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OStfBQ0jO4BksXkMkyNaln7gipkbZsBQIuTzRDScfa0ZPK4MIuBesVxrsASbbZfFwc10gzBEjj8WxNczVD57Cg==" - } - ] - }, - "transactionid": "f62bc111212c0eecab1c1a26c8f637bdae2eb64c4d1929ec0810067f92a6ea75", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "7f1e5b5750f15777df06b4b144037b9fabf7a21781bbf09c83ec1b19c0adbc68637d55121e45", - "value": "71275613973345803098850181120" - } - ], - "outputs": [ - { - "id": "3fe2bd2ec33ef5785a23aa8be7f5585e3cc3fb395e21d5abe63804d8429e4d10", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1145878106147029565425844224" - }, - { - "id": "ce3ac79b2d510b970377c7365c4625fd722c5888d069d411ae2eaf8b3e355869", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "c509e1261a2a9540b9afa9430d3fd7e61020da05b7d2815ee9b66a436ba7fce2d717539d791e", - "value": "1102318851264528308081131520" - }, - { - "id": "7e57fa647c9f194ebdb014ee3c39fb79ac23e45e41384e7ff6e65442174aaa4b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2", - "value": "1163639016221779285800386560" - }, - { - "id": "8ed2c0de3ef08127e70608e583eeb33b01e20d7f206858dfafcdbe54b986b88c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207", - "value": "1006268335106967841149763584" - }, - { - "id": "c963b1bf5c0edb7796025fde1d84b69378136b015632d749be1a608d729be278", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2761509429844246598523027456" - }, - { - "id": "80ccd3a153a38065a45e333c479ce185531e2ce0dc91dc3d07f94cdd681c1bd4", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1201172946981756090430521344" - }, - { - "id": "df082a5b9ee8d0b2c6817f620abe25142d6c088ae4efc739c94d9d210113cd06", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c", - "value": "1025607320120120728576212992" - }, - { - "id": "067cb642e2655743cd0944f2c2d32c21d7e840310c9aff67af44b0d323485f8d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1440499355176807273817178112" - }, - { - "id": "898c408c5652342c4535b2b85d60939d48b03ca04041a6ae9bb5aa318a2a451d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1050580088557030213072355328" - }, - { - "id": "898be4b77dfebb647e717873b987d0f8a61ab10f71c47cb9a3b6daae828028ad", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1095887561620408133749276672" - }, - { - "id": "7576e2c95216bd0294031a5b5688494eb612441f1de810e3dde889c598adf946", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3940173065732395494512001024" - }, - { - "id": "ae94fbfbde44b98b25db1fe7e4b47ec4f6f82552ec00b95544b7579af88aa15f", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1062752057890947849144893440" - }, - { - "id": "8f226908b78f964b9e6ac99bbf92e4eae0f9b158cdd45ab2a6af327a9cf74958", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76", - "value": "1019130938445095933290545152" - }, - { - "id": "8cdf3ccf330c54b142a8fae682be1682816fabca73d7ed26c9f76a68e54009f6", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57", - "value": "1006583199063446242162212864" - }, - { - "id": "69191e848577d71a47d3cbf71cbdfae6d430165063e4b2f471e9ebe69b67a5aa", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0d71a2d2cbad15cad47b8a5c1937b2ce0985846053a4a7aae580d7c1bd8c1ed848ebc48b1ff9", - "value": "1024031032447762262164701184" - }, - { - "id": "4604a5585c960ced3bf1150997b382c1064183e2b4bbd7ffa82c8165cae5ee0b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1065813848481882414474330112" - }, - { - "id": "a6ace3dfd3aa6310b6887e579fa6d0891a1dfca8f2b951b21149a46a23fe3d06", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1296348447205346970729185280" - }, - { - "id": "de6c39246fb9a63fafbddad07a8ecb7e1a3e1dff3ec082efe18b7486f7e72b27", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357", - "value": "1025583837150143513245597696" - }, - { - "id": "973a5b5143f0a19344c1d7fdd9290f8bbf1fcb699a053873ce19a49fdca899e3", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1358563556914540918302834688" - }, - { - "id": "8d4e31f22d7b6675bf4a2d60b42ecb3750e3b0130d6a3d2ee2d7263489d8626f", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1013921037301485903606972416" - }, - { - "id": "71cdd7eea0db0aa820d9512fab8929db48e9149c1ac45b6daf0b35a74d509983", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1077281997857523665966465024" - }, - { - "id": "1c3e496da1e9829f8fe0b9a5369af04b81eda230e2e2bf8cf2a2a21ce961134c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc", - "value": "1043243557792744676840734720" - }, - { - "id": "e4db4716fadae5570e906492f2509a9ec119aac440d58105aa4a8ba47c125479", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1022312899357752468139802624" - }, - { - "id": "f784e79978856e10651366bd2a21a6fc8104bbaeda03cfdf6cfaca352c30b756", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1175737946179790031541501952" - }, - { - "id": "41926360a580b52b1501d0853ba0d0b5754d7b9025fb948d8500b9f5f700b6b3", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1348385481257630250005692416" - }, - { - "id": "91825242c3770263d43caba0bb925f0fa55ac7858dc783a84296980a6d539921", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1057654383253204575825756160" - }, - { - "id": "6fbc303bc54a92bea8c6f99a16bf2ab2390a44c43d9134d6f3b7d82228ba1a13", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1408804516833766460019965952" - }, - { - "id": "595125ca450a4a54f24c4d2898cc9cb28497bf5c5a974f7f9bc355f7d246bcf6", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1563647742075426184136491008" - }, - { - "id": "e4587a572a6fb1f87f1d8cc8d98cdd38e45e0de5062b332923f8a0728c2953eb", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1708500185847514682028457984" - }, - { - "id": "3cf65696cc96a464b888713e00c6a633141351d3ab49d9370e62ddee263754f9", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1082380796428430540331810816" - }, - { - "id": "84b25ca14328bbbdb1073503932a3162afab94c12e2c0aa48b475a6f501abb76", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1650944352404688760197873664" - }, - { - "id": "4f0b041324069ec73f9ffaecf9063c89b89b8933a226b839ca2dd19af31c815c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1205961469192098178174681088" - }, - { - "id": "f134f85158db17decfa0c4858e73da8ee98e57ddfbfe13f3d63d191a24e68d4e", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1100047127346320224016531456" - }, - { - "id": "f4e3925d94733a05abbca4b35bc36521cf09557ca1ed1763b9961ed63c4536a5", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1149962400655720688093757440" - }, - { - "id": "6f1546ed1c35927ab330bb7194effa73e71803ba6f1196983c78add4496bf8eb", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1175311493054693027249913856" - }, - { - "id": "65d71a933995c0f2bedc9961c323a20bfd32d8c8388c5221fc77bb4f5f0e546d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1074843838698394079067242496" - }, - { - "id": "8429ab616d154163a19c429ce4a4a9d6e385ed69e16d2aefff920a9e7e2b879b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1205996599202946027691442176" - }, - { - "id": "06f8de2a81df4a03ad2784b7dc43489abcb3f1ccf6b336f016253826f6e832fa", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1090904970951696596035698688" - }, - { - "id": "bfa0838169d9177b1426b67e86bceea65d853b2653bec37ba246cdc9121fd428", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1445471823546950812951379968" - }, - { - "id": "a83fab911a94202b64bf415a1790dc1e4ce0f68acc64e8de3c70673b7ddb8909", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1002248846318908578423898112" - }, - { - "id": "a7f429b9bba6f44e70dd9ed9c75ccf297599c6f64092877a9f23f19c5d2d91e1", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1232717017962546549522169856" - }, - { - "id": "0d1c5034c92b80d09415bdab46857e681d55333717324aa78a87d1cacf4e5224", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1170977953695309760166363136" - }, - { - "id": "a63a6ff8752fbd49e62b37d9d3c874a7e9cb1cdbd1a818ec27c8cfbd66604bb9", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1110720319360016499859128320" - }, - { - "id": "1244454f2f0a7691c2a788b56ab3c08d061fa277834cda12217cb088db472959", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1125873414413084938530455552" - }, - { - "id": "c8fd10816ae989c81455342757f350799f720f0786838d6bdc557021f528c323", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f", - "value": "1019358039521587986734202880" - }, - { - "id": "e1ec421709fa382263d78fe85da6e8b083cbe757a1eb94136e65e4fcd3a91441", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ec173a7917c20970fce2642782a76a6ebd10dd931856fb3bf8e45e7dee8b654c4f4c00a23b70", - "value": "1031999438611480502637215744" - }, - { - "id": "231e35c16d88fbcbb084c8c68e3f26b52063b7c41c473b21745b50902065d6a1", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1426202656254974891987566592" - }, - { - "id": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2246723016259082233000755200" - }, - { - "id": "9f1b9a29694e08b603106686756b2a69763669a8a472442ae964014dede722dd", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9514901257337797689414254592" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218190, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "236400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fqMzOlKjrUaRsQQG2EI3hTMye5OFdxE8ttE/WAF9atY=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622345094344692606470386855680", - "unlockhash": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OX2dnbWzVvw1PSlgM2Jyfb1l7lFbU4ZHgy1oEgGYiZ58sQEHlLdZ5AvjPqpctYwXc0h+1TcGXjCqwE8PrgiWAg==" - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "D8pwThB8N4JvRSdcWdHzSLRs16XzwU9v0385v6KdL6oPXRQs40XaEX0X7kYUTgHAK/ruPpGvc/oe2mH7/whqDg==" - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1ficdDkTGiuM+amLTA+AJ7X2oXEgAd2rzTfEgvXYM/0P9R3YXzO6JWyCwOnKIEqcugole4SMV8s+O6avWosbDA==" - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VGuTWQvnv48qACFApQbORoIefYR4ON+er7M3Klagto875in/yFCS019uoHyYFNEPYw+6Ff4VKc739XFfxRyDBA==" - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "f5y+5RkDTcq8yiwSVUIuLjot2wYOrYkvzS1JGLejOWXLGrGIwzvQ7VMH64WNvRcRQQtsyc/47CQma5d1SNkvAA==" - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "rNLFg5z0QX3kI5T90UpSkQ3I34tgiy7s+GZ0wvcBO2goviMYI0h6nMFd3n0wxYkP94P+/+GVjaKm386lA9EuCg==" - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9PT7XaFdwa+5LVfTxCZOaml0hui+k/AC7hSLw0mXNCgV/PTir28gAcgvc902QZS2B0yelqXt81b62FgRbk7AAw==" - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "re4N8meCPil7/FKjo4xRBF967C7Hpyew6Eu83mhWidk3syn/SCGn5ST3e7zMeImlLNfKytEJFSdPScXe1LOhAw==" - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "d5hfcLjsXghIhuXRyPAHiq8+bvD3Y/mDDyoQ55wy7V7lbjrb8PFic6m/HsjwjWcYJTb+SxaQlrajyd7hmRjjDA==" - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "BcT53cn4hnDGt7bWMEPyZSVgH6l0AkLZspS5ufuZJjBJcc2WWOoVHlSBZ1J/SNNWtNU9s/qgCNf2tZYNiN/ODA==" - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0sckJhAbjsxdsCjJpAufbVE8vmLhyBxBRDpZn6SjP0RnpMc+g3wUu965nqpZdEm6ooa2I7+3iTNKsmYjbIscBA==" - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uFB/ZQDNY4ykH8mbmfYmF49CNooGm2U17Iw3c6UuZN7GwmPdAGGYilkYe6PsbOkom/cku3h9EUMjW+Vu4Uz7Dg==" - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZER+XUIuDqp4vPmBXnk035vC/yHII8dfrYZtR6Ey8xDX45b6Z97ao+MXDPYWDZ08rLH6mN4fRUifwBMx8LAXBQ==" - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "E2CrvfGlJLjfMJrfTij3/c+ZPMXH8ykMatJeHOuEQnb1k7oHuMPA+gDyyS9k4FZKvY0aR5ESQwTDVW1n+Bf/Aw==" - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0dhkgvDW9CQLG7cclSIipm5IHUz4DKOlOWtmKpve3xOhamQC0YiQJP9S1ucl1qwQ98Eqz0Yag7w+v38q4UICCQ==" - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "otdeUk6auzoCv6AVMPZRwUX9xB46h/AbD9gz9RvCDcWQ28UCxIkh0e7Ai2Jl6kKOtW83eHop+6hkDwaSoQYrBg==" - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "faLhqR98mMJNQvggGjDxz7C23WDj2zBya6Br5qISNfNIy5+S07cP2GRUrq4VKS+ydaPpyV3uuHxnlukzKsX0CA==" - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cdoB0hajMxtrlzyAb2VOlunScpkrvGyYse0N6alcFLS8AwxH0YwCtDYQjTZZP03a6iBHCkt9fvr41QFRNsSXCg==" - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bcKC2ef7rC89q6UGs9YuZADbNLEhskD7IfdVizYISIYd8ShhsaYWfpvwGkPCXD7TQBRvqjLHcaobReazRomnCA==" - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lIXj7ueCah5ICa6sPaGAXTj7bnNHQbJps3rw7UJjVkrNIE+GPubzE22ySRLZH7j+ZlW1drh4979LHTeKYIKBDg==" - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RYTvQe1ozjJtbIAm1H0I85mvCokFZp/vYk3aVOHIGsaqhiJIbfWfLABSy9uSlKvLKbLQq/5uOjXI/4Sf1fvmAA==" - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "8Ags+jUB2QID4eZLmyxs4s3UHRIiFCwatcox53ctZyZ9Q0KLWdPXCih7+QjycMshDaikRxYcZcNADS3FP8nECA==" - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XwEfl7tnZNs+U0+A5cA+yGRJGFT0phJPmgl4MaVWjsGNu4HoIxkr0G2Pmy1KpwLv9ASQepGYwGgrIyiDU2H1BQ==" - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DkUj+uGo90m2dHDYqg0A5bM0otMRcpgyBSPd/cfS6U/ilXrrdrQl0aoDV0mJ7twf6j/nu4EfpVZjc1b7IdQfAA==" - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "17bN37ihWG0TcH8h7ei4Y0SGL+Fn86gVlWI1oM/1KpZo0fKINLhCbmowqH1g5ZDa4wEsC3YCo7HOmXvb7IZvBA==" - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "eqHPANLf4FrbHhBcVES8OLRJfLv1ZqQo+BZBumfgAkwJ+8uIPI4nZDW3fpDd6TR3CWeovqbYS6KvCursj0mYCA==" - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ide9DVKvU/OTIPWFAjutu+Uel/FwgjkUG8qkucApwa3BNpMRutZywm6ubtRjByFIfzVxOXuLVYmqup3K7YfnAg==" - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OsY0uueVspkjJP7+ABSqnyjBE8rUoItHhiocn7qxy42Zis6/MRQHQCChc0/BUHed7coo228Js0O3FJDQAPNPCw==" - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2V8ha2SMwJekwIgGoc/ncpU+IYW6mNquvSv4OOghJLbKFEZvS87DsHYZwdJiHZTv5Ij6BJ4woaE7ZLh39HvzBg==" - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "88FeQHGgzHNx5WWNQe4Cj42R27d3SmH5gf+6+3HaEVeAX2kJ8pValciwlvp25A+VNJeuWqmXxfwBKX/YCNObBQ==" - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2Rn6UG2tciQQrGlrvpzp8ojuU3NsrP/JU/8nlajYeFpDUiNFqwWvb4lRJ8Jgo45eDYyTLJfupemV5ifJ1SltBg==" - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Zg3LfMv/oxNikD3Oc3j79fNciscxnZz37iN/Hk6na25zA+wek+4i3pNtjQPmjgtqCKMrVVulEIHcs3warAb5AA==" - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1c5KsYPvORfNf885mMplfoZXYJ260LUNtEp/AuQd5PnNVl20jikv7AbnMpVQz58JbrahFgWIqSfoJqZYSpu0DA==" - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Vware9qWrsveVFPtU7uYJefDdAa7LZF3wYgZV+IW0agQMZjW4hvQDnxXRoUVz2r1yinAbXZfayxHwhfGTFvYBw==" - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3aM1SMVkTKThbmUqBJVPOexMP/GVzTIeM8eJDd/sHqXoxvfIthopX6iak6YL7eGseJ2txdaEdzVBNaH24Mv4AA==" - } - ] - }, - "transactionid": "465036cf05f2802f165b3a34c2d55cbb4db83b5c6f606829c1fcaa37c1c9b7b9", - "confirmationheight": 218047, - "confirmationtimestamp": 1564432481, - "inputs": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "bdb1276e1500abfe93629f2210cda23e7e85d768bc7dcb1798ba2ce89353903a9c317bfc0278", - "value": "5536459615741419703439749918464" - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2582881369904053766934495232" - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2582336124228226656325599232" - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2578618428506838304127188992" - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2574099091199637184135036928" - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2570172239128277832641282048" - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2568792774605059378372411392" - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565653792829566375570702336" - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565575982412103390584635392" - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565023039430481518094450688" - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2554948945056981653018116096" - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2551030716812447097282363392" - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2551002831064814067770851328" - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2541175016537308719162064896" - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2540601595575613840955539456" - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2539812703783638132164919296" - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534320843099668530885296128" - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534142745485201871363637248" - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2527370977241186333339156480" - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2525727502887048264032452608" - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2521764897879502185662775296" - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2509725691012095758441644032" - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2505048317327843513677643776" - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2497500209049943987751747584" - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2496652016749727464401403904" - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2490284964358610948290772992" - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488916717212349232465313792" - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488212825043860596012875776" - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2485860222968549926533857280" - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2484614393352784110713569280" - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2477777634711049934169178112" - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2477115390833416374671376384" - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2473377428282110228079575040" - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2468503420464615561126477824" - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2466837754238290291878526976" - } - ], - "outputs": [ - { - "id": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "fundtype": "siacoin output", - "maturityheight": 218047, - "walletaddress": true, - "relatedaddress": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec", - "value": "5622345094344692606470386855680" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zjblctg4phFHv6Ofj91bjkch6Kp72csIhNA4e6NTXXk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622345006844692606470386855680", - "unlockhash": "4a07b81491ec450f5a5b163fea9ce2e576cdb906ec83156070e0792398fd7872732699100248" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VqpOTUrmPbQ77HWm5p590YLWlkEcaeRYIR+9UTx2jFfKgwsBBiev5eOkRLNSJKPHj5W0DAZBJNQ/vAIrpkw+CQ==" - } - ] - }, - "transactionid": "48e8aa981ebc3bf33dbb3f4dd9d7160171f2762e2da1d99514b45e69df5d53d4", - "confirmationheight": 218047, - "confirmationtimestamp": 1564432481, - "inputs": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec", - "value": "5622345094344692606470386855680" - } - ], - "outputs": [ - { - "id": "948aaa5b9d887bb741026a069e49c906bc890c2523ea0e62415dc4c002aee2b7", - "fundtype": "siacoin output", - "maturityheight": 218047, - "walletaddress": true, - "relatedaddress": "4a07b81491ec450f5a5b163fea9ce2e576cdb906ec83156070e0792398fd7872732699100248", - "value": "5622345006844692606470386855680" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "RI7DiBVOqdO43eCG1AvnM6mo5CsNm0y2NfwHqqcN2PU=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622240933139506891120768385024", - "unlockhash": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "14154eDhgwRhNGqdQEu1whZ4rmSh61vlCHrOSgV3Eo8hRltWkscW/rXzyn2v4odg/P5qc0x4W3nfG022i5NMCg==" - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ialPaf/MrLNvsjIT1b/RuMZ3Bi/ZELkK3HQfFQlzG2lVf3W+6OrR5lFPA/rOFejX0DKmd6K37jV2+FWhfa40DA==" - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CIxminLOfbf4AHYAAmezlqLgGJ/3zw1VegiMzd1zEUg9qBqF8qEcrAQrokephCc+ayEUnaGyNKsavZJp7hJ/Bw==" - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HMOq1DZkqkDsdjUhJ4pcagmrRLiUy5mXnRYycuq6GpwNDrOLHBn8o6kMZoDCyrTsAsOxCd5qgj5wnLyVjJg6BQ==" - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ubuhBaTeHnfrcEchlBheAA4azrTgPyx2V3uBhRnmnQYhjhlXBcm54tL2xOkZ0L1HpgmpQ8xCtN562lqdvYA3CQ==" - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oCUXxDNLLYZkuJBQaJpAspmhBEqYPZhjZtY9DvLNiVA1ctcBbshVplqCZZB216Wv59ojfPjfTYl3RQgzMJbSCQ==" - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ntPwk4hiy32eEDttTun0/fHtmmxUY78mjn0d0uzzWNSWpLIbIajj3GWJR+2JYTEPT+SZ78nt6FLi8KnLxX8UBA==" - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "j4Ba94d6qUmfw05oICUgQ3EwbwokkWxjbNtS/BO8QIZ+dTbgNOCrZMF3FLHG9lirRIYcTqoKXiWLEO8U1puuAg==" - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9zZ38W1gNVE4eLFD3cr6RpjUBQttF3iyISeKMvC6fXkiI48YKFcpVYv3kv7paNxCFrpQtFYXA2TeHjBMDDzlBg==" - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TznSMb6NuIZ588eYGy39PwC2imdNlsjmtsNLvSwShA5IZAmRwTAgL/r+aLb44JDvxumd3x/8dhxMnrWCBrH7Bg==" - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CE/EgBh7PM3MaKiV6byGuJHgWvNOh3T09mySoseMqkfVKdUm6meWgnMJ3V5AE5UEavjgVUdlX+wPtz0PimwXCg==" - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "t11k0cV2otHgcQ34pbgpYnEU84krAQDRjyChVmRoKyQ8QkiZXjwhtmSWOkMEpL0IBiNrUqYsHOlz8e2+8AFQBQ==" - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "k/a8F6ZnQTIBJjcCVo3st417jp0ZyjakXdU88ai4f551HibWEX8bYSGQGuU1dNsso9emh18rBwqG8Q6SUhW7Bw==" - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DcOv0gdEpBgrHvL/E3l33jsk0sViPFLWpyKcz9FTVgeRlKJ8u2/hT05UpgeqrT1egJw19hMGbtaxJr1fB7+1DQ==" - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9nlbfFYS+C/FuF4JIlL1DLmA6gXo24d/gOuh8uYwTgIGxOn6bGzJouSHP1RrtvTUpEza1BhVn3FzBUGa1/luAg==" - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3HuZMfS2hHypY6OHnoTeX7Tzum+7otYmAPHPasHxRzcrA2kulJi1DITM+G53acr0VIXElRZM7fn7ZezXZD2lDA==" - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "fZtPTjrEllsV/WdfitMrtmZLvB7LUtufbYSSrEk4z6rMmbsMmJVmJg0/cxKyIZ8UD9lDRJhycwIXCvMXUxLkAw==" - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5iG31p4r/xjde6aZXUJuo5To+pa5Z2bV1kiiI7y+kPZ07jMEaWQ0T5Bd+SPCNxJbd5PqqPRQo2q0l/hIsxNwBA==" - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NbYWxNRSidAn6dBZ+zE5TftOqiCDHVOJqGqEDn9thBjf/gAfWm2mqnGHNGu8UFiEsZTTGCThXRqic8ae23UNBQ==" - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "PL+ZHxKphOXNuPjVDcTLlpQNqX4r1ap8ZTDbSfMbHaDoHDL/AAYG8L1OooqCHu2hop0qDLZwRQxA1WpwCJLkDw==" - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3BPwS185OyP6XrMUc1gO4LYXgoYSHHnQHrO23L3SpMwWyUGJNOmoDavthGiH908Gq7MYOzORlcv/wd4wHCoMCg==" - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gLddcNav7H306hl3OzDvGrh1ZmjmeaWYCQBdX2M+Ee27l428PcgKhWH4zZuvqSKI80JI8EafVttXznQrY7FiCA==" - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kNsG5AoTD+1cpyhY9aesYPbESdig6CUPqXOdtEaq7C7zcAGVKYQ+u0zxppxQUDwgWthy7qCK3smd8Ox//2ZYDw==" - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/oL1+o0MgypdtvXZZ1OgYmJNCOP1zrMVFD1RfFpR3jdCU5BzwelLpk9LCB3cUO1nmFNYlAC2l2Qxy5ewUqQyCQ==" - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "K5hQVmy16FEDVGOQxyVndxg4Hakr1fcmG7w9iHID03JDxmwAqjjaZhB41iDA7nrCpLMFlB1q4PnOayq5btICDw==" - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oKJJ9+DCMfzx7/SwgBXG2O0HIw2SZM/C+Aj5a0qP7ZNNDlBoC1TgoC8jPDeg1ffr1kLGP7fnZzAPCc73g11zCA==" - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pYQJngNzduvCHH8cKpb5WGe09KkwVmohAdzqR06CJzgw358ZG7gMJqCVYscfLkb8/fcXKtLjver75LkE5drUBg==" - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QCLJ2dI0x+saLX+JHOQ7mtCW82JhRtzW0o7kGe3sWIixaP6vGJ7Di/hwNxhDm1fco3DgDsGHPe7qTnfEBuAkBQ==" - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5jDzlrL/EvO+giqkDhcGu/uPOUeUG/56pxz46Z/hz4sqqkESWNHou5//L4S2l6s48acYH61FX2S4wHg+w4IYDg==" - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uIn4A/eN6ryFnqlxjTMJX/8n4M161IUlYoSpR4xV3L4o63JIO9gwi+k2KW4Iexe+5TYV/IX6ZpH0wGiPwwM3Cw==" - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NGKQgusjuVknPX/FSTxLRi7ADV08JRrsNCcYZGXUnROXoDxzsteEyyMiLVYSwXL19UNlzLU/VxEJOY8b/WQMBQ==" - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UnjrK1ui6IlyAhgw5LwxFQefrDP+G5fKtSaOuQj15lC5kL63sqQK967vL30nrjqRb9MmBDFaqOiwYWPFAr/WDA==" - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ol85tpipnsQcDZOuQFGaIPcPxSzzT21hMg0T1wDTL1ULrFA4FT8Eh6Xt6ykPnGzgoE6B83Lm54JY/o1Qw8r1CQ==" - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "PhLIe9s9r5Vo1+szURgOWUPVWpvwVmDU3MWGORI4ySXxmm6sw8fmTOC7ROfmsihb4d/0qsevVRelWuA9yADaDQ==" - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "LLZc8IBjWnK3ySol1BpG+X+aCS2BGAAxK44MzAvqsj52kAHzvX2+64o6I9p5GcQ+eAnYKS5a1k2F60xMRydYAQ==" - } - ] - }, - "transactionid": "f7eef6ac34b7bc5ae058541bcd168bf3b239ed92c57e611cf5f7c4f9ac84bbce", - "confirmationheight": 218048, - "confirmationtimestamp": 1564432941, - "inputs": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "d41dd54ea95eae067dd7a3da3095dd0bb8d7eac8a088ca2043c9e17d86f4e072fc6ad6a729a9", - "value": "5541048324703465469338049249280" - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2463018105876406900742946816" - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2460131869122318386430214144" - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2457825540930172972481642496" - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456999889881769052779577344" - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456784073762052073892872192" - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456286679331847937732902912" - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2451440866060532662061236224" - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2444411264452273576305754112" - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2441471068025667376960765952" - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2435957723071406327719788544" - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2432601024289922826251534336" - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2428741524328892379458174976" - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2428556375127242121039314944" - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2421871806966376324598333440" - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2418619659658957042508365824" - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2416043595967564376086413312" - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2402742124188604921817333760" - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2401888051133483926597664768" - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2395532066607672195970760704" - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2395098495168784465074847744" - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2380872942859208562449580032" - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2365944833185355028123090944" - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2355142829605431246212562944" - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2350453169270306465470480384" - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2339952349710911757596229632" - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2337915160310443317003288576" - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2320521219459543541959622656" - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2312290652243490815006998528" - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2309571643861409473534885888" - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2304601468820054213987926016" - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2296670231618115882845208576" - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2288340320019050018468003840" - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2287289430006583496724709376" - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2277020381119570116826103808" - } - ], - "outputs": [ - { - "id": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "fundtype": "siacoin output", - "maturityheight": 218048, - "walletaddress": true, - "relatedaddress": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988", - "value": "5622240933139506891120768385024" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "5l4YPhqQhHkakT9WhIvFJabhIGosYl7Qx7BCQ7YJAAw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622240845639506891120768385024", - "unlockhash": "65e818fb0e994d03f9f4dc3095e56de0a7e321dba96d16de872b6e43d28a5eba7ab13b45b05b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Xx26SDo1bkipHDKEiQ3QaNyDMSzc+dE+3/1IUwZiEp9Zr+YbBQYdCvh+GAOkXv/+VNA3YpEgZWVx7p2dDfoUDQ==" - } - ] - }, - "transactionid": "05387caed972fcf521d912feaf12681d97638aa8b60db5f5ea97ae129888bb9d", - "confirmationheight": 218048, - "confirmationtimestamp": 1564432941, - "inputs": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988", - "value": "5622240933139506891120768385024" - } - ], - "outputs": [ - { - "id": "fe384bae79da7534e4bd149ae8f39736fbda149691897fa94419d9bf23fc3d7c", - "fundtype": "siacoin output", - "maturityheight": 218048, - "walletaddress": true, - "relatedaddress": "65e818fb0e994d03f9f4dc3095e56de0a7e321dba96d16de872b6e43d28a5eba7ab13b45b05b", - "value": "5622240845639506891120768385024" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218192, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "rJxDRznAkp9Jy7+iW7kIRXuHrtuIP7AM83qxjLm0K6U=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1079035300876117983978848256", - "unlockhash": "58a26f3fffec925ae1132740a537d92242b9f3b76edd537bbe1b5cdc768c6afad30fe160c36c" - }, - { - "value": "1016191964993565324241534976", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1103372539376579179874877440", - "unlockhash": "173942bb6a9d3d4266a2a993e96004ef98417486fa063027f23f700ff7d7a698cb41350ab174" - }, - { - "value": "1108272010946814831366635520", - "unlockhash": "d75629c55c8b1137f60df415d7df7300372adeaf8c2d62e3553306f7e14ea5b8bcf1026286de" - }, - { - "value": "1038346462785200926729109504", - "unlockhash": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b" - }, - { - "value": "1002143994648945378082816000", - "unlockhash": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c" - }, - { - "value": "1200474348474732716901269504", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1713517360180298961077141504", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1326114229543935152846536704", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2669560964409263678453448704", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1188428277122233816043585536", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1074987115184920449237254144", - "unlockhash": "7836dbdcd27da2860ce569c81c892f354a603a7f9d2de65742752ee71fc0b5b774d11f8bc322" - }, - { - "value": "1053143202223226328791384064", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1020028091083164799069847552", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3873166246890229414462750720", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1048249571512618904671420416", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1043766710436091721553920000", - "unlockhash": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79" - }, - { - "value": "1147411034223376309437071360", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1029196904608983755042701312", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1005957281126707622662701056", - "unlockhash": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769" - }, - { - "value": "1115710710891716086813687808", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1050697553538554090708221952", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1193149355939062831771680768", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1015508183934852754669568000", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1285002620687451980870713344", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1089345615825374538493853696", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1023423253632504414491672576", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1011693128226304868345577472", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1079257538895527695462367232", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1226297734608190246578290688", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1170455178099859137210351616", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1056564891944971124722368512", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1109627154036414697510535168", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1038142194014786908519858176", - "unlockhash": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79" - }, - { - "value": "1919926009330604769097547776", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055421826407638391714742272", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1179951742922731665899716608", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1099292109648460276519141376", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1051337473668156425557114880", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1042374159543020833489731584", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "2198199701266604465842028544", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9308152535232937443236773888", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["211200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SdDetoZh7jbCCsOa34JN2UMp1T2VY58z+b0wMY5nFeRecdXh79J3mY1RFfWH44MucSaG62mV/mG0oG4dGKdcCg==" - } - ] - }, - "transactionid": "0059bccad215beea61bbdd5797a42464dc1b2ee28ba0703bc36679dc7e2e9425", - "confirmationheight": 218052, - "confirmationtimestamp": 1564434781, - "inputs": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1b3368abfc15aa98e3036221c6ef4cddb37098318df5197b85f7f89b8923ad08de176a87a2f3", - "value": "61061105482942732902050398208" - } - ], - "outputs": [ - { - "id": "d23112a7770ef414b267d967156dbebf0295bc8e9af7139b355c69625b8c6b1a", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "58a26f3fffec925ae1132740a537d92242b9f3b76edd537bbe1b5cdc768c6afad30fe160c36c", - "value": "1079035300876117983978848256" - }, - { - "id": "91195c2b9ac83377fea65f29c994788d29e6b869d1caae815dfbac17ad230755", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1016191964993565324241534976" - }, - { - "id": "eaca3ce1c507bdcd7baf0a02e4f18d9d0ae7b09943497045b2b7b72d724ea1a9", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "173942bb6a9d3d4266a2a993e96004ef98417486fa063027f23f700ff7d7a698cb41350ab174", - "value": "1103372539376579179874877440" - }, - { - "id": "dab70b6d5a2b9feb103df8b741f2044552a0d713bdebe0f3a306d179bb046ffa", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d75629c55c8b1137f60df415d7df7300372adeaf8c2d62e3553306f7e14ea5b8bcf1026286de", - "value": "1108272010946814831366635520" - }, - { - "id": "3af10eff13388b4488d9e6ab9e9bd6d233163197b9a1a5132e5844753aa6a739", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b", - "value": "1038346462785200926729109504" - }, - { - "id": "bc025cae9814fc121d2f2ec75d367f2cf85f4bf06bd4241191f38ea8b8f42b0a", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c", - "value": "1002143994648945378082816000" - }, - { - "id": "a28beed88c78cae442bf095e6d2b01d3a7f624b4eabe193a855b3ddaf9c25252", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1200474348474732716901269504" - }, - { - "id": "515f24a5d8628f18c6f7acfceed309f1973c2e31f4e83ebb3790bd41e9df0dd2", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1713517360180298961077141504" - }, - { - "id": "db19cdb706dae427cf6daa34769cdda995635ffe2881a42c210e1843c42d7fe3", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1326114229543935152846536704" - }, - { - "id": "01a81b83ff37b252f6a870a303f0944b59a1630c51772ee9748d09811adae4e4", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2669560964409263678453448704" - }, - { - "id": "0bf274eeb74a59389b614329b06fb36bb7d1045bddc7755fbbf1210dbf955ca7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1188428277122233816043585536" - }, - { - "id": "22edb9ed40ca1258d921d992f867893449e4a651732098beb297bdc359587cc1", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "7836dbdcd27da2860ce569c81c892f354a603a7f9d2de65742752ee71fc0b5b774d11f8bc322", - "value": "1074987115184920449237254144" - }, - { - "id": "c004954c0df1e003074f94e7ffbed20bc17466b64d7a2a77a8c93cd59f79e48f", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1053143202223226328791384064" - }, - { - "id": "e7b1be691aab08878acc25ab4ef37c5a3dbbffa1a93aa84a266ee47951b8c4f7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1020028091083164799069847552" - }, - { - "id": "860a9670c642011968062b8d928a552f3784d7f8fe2b45333fcc21dbc0ff9b16", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3873166246890229414462750720" - }, - { - "id": "39e3321c00ad910dc6ad9a029c6243b96b26a8aa6e87e8fdcbb1341afc10e944", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1048249571512618904671420416" - }, - { - "id": "a9af5f09e12ab99c6ced908cf2c6def9b5f719091b16224f18b1b8edbcc3d119", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79", - "value": "1043766710436091721553920000" - }, - { - "id": "ccc9d37ebbeb8b98a213e192701915b80904ea5347340af3b0727a85d1643d81", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1147411034223376309437071360" - }, - { - "id": "d20abedd1b6d9dc92f9c0431143a9f607a2d77beee54c9dbae5effedc014ab96", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1029196904608983755042701312" - }, - { - "id": "31166a47f3a8e15a360cb9a4314b507265262cbfda247cfb190d94122d14e17b", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769", - "value": "1005957281126707622662701056" - }, - { - "id": "785a0bdca4575054e20f2656b55d3040b505146ecfdd46018c791e5a94ec3a33", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1115710710891716086813687808" - }, - { - "id": "35aecb549221be5971396916201067c493a5ea1d3a498a096681ee8e9b10843d", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1050697553538554090708221952" - }, - { - "id": "869390112af273863c13f79a23a41ad8fb290746f2b11c0f758e4470a5a73a02", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1193149355939062831771680768" - }, - { - "id": "f11cb05e9f1d6192eeb9930cab4e7191ad17d930742c7484a1f33dfe4f39c6ce", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1015508183934852754669568000" - }, - { - "id": "6c15995c8ac7ee0b1dd4b1f3c94380876341c68f54026eacb143f0a8019c291f", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1285002620687451980870713344" - }, - { - "id": "47fac2595da4c76b7ee0b726089a4104dcf08310ca2d65af8770b0a85c6ae268", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1089345615825374538493853696" - }, - { - "id": "54069869c8b50f316ef45973b259f40d9e1f118f5d872bdb33b9f7ac94fa1c73", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1023423253632504414491672576" - }, - { - "id": "0353ec73a36f39722e2e8d980e19a9fa754b35c3b8448dba0c1ee8917d4bf018", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1011693128226304868345577472" - }, - { - "id": "cd3ab55418d48d2372288ad5ad9f881d99552ea265fc2f3f733c297bb482c3ec", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1079257538895527695462367232" - }, - { - "id": "ed9f018d0bfa1860cb8419e4f4f745fa306e5be241656b0e71782995855f957c", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1226297734608190246578290688" - }, - { - "id": "57e868a08e5f81dbd6d55b6304282b38b467e61562eb6d02389c2c9b2a1f94a7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170455178099859137210351616" - }, - { - "id": "22e88d6ec7f555d7857e8f5a2ec9c3cd3740a133ccf75c6ee1a84de828eb2a01", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1056564891944971124722368512" - }, - { - "id": "017498973152ff1617f7a145c5eb24d8bbec3d1ce24df4f17738c581b0a5c2e0", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1109627154036414697510535168" - }, - { - "id": "c9afac808b44cedd08a8f81949f3698071fc7d7c81dc4599c2e129f6fe4b31cb", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79", - "value": "1038142194014786908519858176" - }, - { - "id": "fce68f89b1f3223c585bccd8b7e54e72b10107a6cc5f9a8bef050c7b44e090d0", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1919926009330604769097547776" - }, - { - "id": "a46dc55702c44511bc992ed5b8de7808162139faf27c2a1e0eaa6b0c4d475346", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055421826407638391714742272" - }, - { - "id": "7871a6a7fabb0d8b460e24844d6614cae342515efb1eadaed483786606202a5d", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1179951742922731665899716608" - }, - { - "id": "36967df6e63ad740f7889ea05c3c54090430af233cfdcce13aca3a2d63c32b24", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1099292109648460276519141376" - }, - { - "id": "b2fb30a4053e59923b88ee5d365e4fe290830008740b7d9264f3854173f35da7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1051337473668156425557114880" - }, - { - "id": "18f17d24cddc3e2ef1ef3e45251912326f20b1c9a5c3296da2b53b98fd05bc4b", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1042374159543020833489731584" - }, - { - "id": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2198199701266604465842028544" - }, - { - "id": "f6b8c4899ee8fa3138fd3820e74f73e95f4885c4891bac444ae0cc0ff056927e", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9308152535232937443236773888" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218196, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "211200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "DCQR5T2TD5GntluIaC4fwRlddjCeIB6keuyEIho/JQo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1004652616515306924692668416", - "unlockhash": "1cc4728271478f901653b222d0c9549c944b04d29f106d3f9022593f4474d57e7db306924a26" - }, - { - "value": "3904928853947843943013023744", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1007157018162016372773617664", - "unlockhash": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0" - }, - { - "value": "1079462453795605437382393856", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1147999849784292025609748480", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1002579153540183311060631552", - "unlockhash": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce" - }, - { - "value": "1029525523166248777087074304", - "unlockhash": "820c75b935016bbe4757cd28caa42a3542b85f8200208d19db3183487cc508ac1e9e94b0d906" - }, - { - "value": "1136760663153814045382410240", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1102922521961859860574240768", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1106973166495945839933390848", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1048815677549135850476208128", - "unlockhash": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218" - }, - { - "value": "1045653087514220390523142144", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1253681783482268105807233024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1159527914971707870283431936", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1379465595848468339510738944", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1551986604239260662779346944", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1682235653997865363769917440", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1016360272493485464994021376", - "unlockhash": "602131b3744954003a60683dd52b3f3d3e61b7cf450133a95516cec6243a04339275409b8352" - }, - { - "value": "1600958014176205145408274432", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1149854082568058040790024192", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1211872021298542306277326848", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1014563290187777812624113664", - "unlockhash": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d" - }, - { - "value": "1412180928207083839743328256", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1166420782857399184472932352", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1197852344734422241529298944", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1084938703329824296541618176", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1001902682790027202337243136", - "unlockhash": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4" - }, - { - "value": "1046808378381697615771467776", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1094059480689370992298688512", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1421882567738447462159876096", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "1142248104614465989917147136", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2176419340325755875384885248", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9114039866322875378552537088", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1027057623193695372122259456", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - }, - { - "value": "1289529339785346916903026688", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["186000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pDiR2nBv6BmcCDORNBqLoxtg2eYdMrHDnTGbMax6XJObi30suwq74vQUbds95COSkWPl3kxlsQDZdv2zYOWUCQ==" - } - ] - }, - "transactionid": "c60bf7cc0773b1d6f3ce9adf014f0cc8b272aa994780da8a5150b63099ee30e1", - "confirmationheight": 218058, - "confirmationtimestamp": 1564441136, - "inputs": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "bbf6e30f022b3b2ed47442853e249410256e0102178eba0e410776f9fa8706d57dbafd854508", - "value": "52813461961820524258487287808" - } - ], - "outputs": [ - { - "id": "221da126c70332f06e36e4c5d215dfb218367886750dea16980fe96853cf7e6c", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "1cc4728271478f901653b222d0c9549c944b04d29f106d3f9022593f4474d57e7db306924a26", - "value": "1004652616515306924692668416" - }, - { - "id": "9d4a0f3b5dd3a3ea3f2a23afd65890c9bf5f905e2094627dd85913658158e9c1", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3904928853947843943013023744" - }, - { - "id": "25e676b559dd9ba1004c2f9810a9e344329ffab21435e078745026cb99129fdc", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0", - "value": "1007157018162016372773617664" - }, - { - "id": "5fc18d67bfe7c3af488d7440b8a0c41ea28cb32d79f63b164c3d1520dbe2becb", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1079462453795605437382393856" - }, - { - "id": "87820c1a91124023787b7e3f3ebac2428811688c1aa77dd7a5316799f31845f5", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1147999849784292025609748480" - }, - { - "id": "df40faf4d0096c36725af794b1db544ed93daca1e77fa537b4a6bb208de891a9", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce", - "value": "1002579153540183311060631552" - }, - { - "id": "77dcab58aa25ce7ed4de96b18a442b5e6ddd4b53fb38a3249be2c73e1086462a", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "820c75b935016bbe4757cd28caa42a3542b85f8200208d19db3183487cc508ac1e9e94b0d906", - "value": "1029525523166248777087074304" - }, - { - "id": "31947d0916da5098b06d0780a920fb62baa90cf020c3a3f492165b1280a5bcf7", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1136760663153814045382410240" - }, - { - "id": "a355ac596c3ab36978acb7fa4b16c2da316e1f5fd672aac1cc59befd581b8c66", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1102922521961859860574240768" - }, - { - "id": "7d7e6b5860b2cb02ea983dee0317e4cf1d9a9cec3b13df755a035fe0638faf70", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1106973166495945839933390848" - }, - { - "id": "a92aea72137c2637499886fa2f413b92a296804b8525e291e40a9070f406e3a0", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218", - "value": "1048815677549135850476208128" - }, - { - "id": "8566c8244aa50031af5658b3ecb31e0a05147f129e63811be4ebb80934e24c50", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1045653087514220390523142144" - }, - { - "id": "38e50b250b4e403e36bfa5b8b3d23da93e7fbfb1677a9e4708b14f5b48cd576a", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1253681783482268105807233024" - }, - { - "id": "5b00663ca6d407cea15830443ef4d1093935e0e2d032071871599b689e1d195c", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1159527914971707870283431936" - }, - { - "id": "8c6584b410d6c51556b5591bd20a95b873250c7e465a89c44ca2c91201020587", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1379465595848468339510738944" - }, - { - "id": "13baaeb6cdfe80817b48cdd9a805392812c5ceac4b7fcbc33e664ffbcae0ff4f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1551986604239260662779346944" - }, - { - "id": "a2f66309d9be03077c8a1e8b4fe234801bd0f42405114eb007c9706f8cba707d", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1682235653997865363769917440" - }, - { - "id": "da18999fb8ace361b044cf074f2cdba4c2e8952141cae3530948b27524d08b08", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "602131b3744954003a60683dd52b3f3d3e61b7cf450133a95516cec6243a04339275409b8352", - "value": "1016360272493485464994021376" - }, - { - "id": "6814acb52702723b9e569314abf99198611a782539738ebdc9e7989b8ff7f257", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1600958014176205145408274432" - }, - { - "id": "35552360e9722525ea516b1de05c45d696f9d574c3a600b9f467ed35200b4ee2", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1149854082568058040790024192" - }, - { - "id": "e5e2af77b3146623bc8746d16c6bdc46fb0247dd0119930eb19c41f74c9384da", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1211872021298542306277326848" - }, - { - "id": "31589db2022f6d3a7945a98b1ed3613da4ee7e80b094c5b11ae0e70a6a1a33aa", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d", - "value": "1014563290187777812624113664" - }, - { - "id": "8c191cad3f121cae1eb84471227e4ccba15c6a4eb66ba6789f9bd7e12cdb7253", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1412180928207083839743328256" - }, - { - "id": "e5c304469a65e398cc548156f0f57a737f630ab72c4ef9fc143833ec1189bb0f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1166420782857399184472932352" - }, - { - "id": "9def949548f3f3f606205142deb60a6ad77d7a054086c3a3deb04bd18bca864e", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1197852344734422241529298944" - }, - { - "id": "f42915f92173abcc4e29b5e7c6c91a4205d79eceefac16cd2c92219c81d54499", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1084938703329824296541618176" - }, - { - "id": "e9ce41654293672ce22da319235de30943930abb861bb61616b2a164afe58f2f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4", - "value": "1001902682790027202337243136" - }, - { - "id": "67b38ed362c23f2a2134969adc4353cbfcac8206ca15b671e7869a1e356efc48", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1046808378381697615771467776" - }, - { - "id": "31534c3367fc9c8c15e3ce8a1ea92ad8ff383479b527279e805601272d23afc7", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1094059480689370992298688512" - }, - { - "id": "80c49e15a606255fa2880d79247ac7bcb58a179e7f35dd1d99cdd616a987385f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1421882567738447462159876096" - }, - { - "id": "3b6f8ef86b6973fa7c7c0b93abf29ba0d835321ba888ff247d2f047a2b801742", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1142248104614465989917147136" - }, - { - "id": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176419340325755875384885248" - }, - { - "id": "5866a78011d97269571142374c695154ed6740703d5ec15be5c3781138cb51db", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9114039866322875378552537088" - }, - { - "id": "c9b5112641d47e44d1eee11625a77d390830c3669b61f8ebeec31c2d962589b3", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1027057623193695372122259456" - }, - { - "id": "affaf840751657793e7148f1947c0d714073efb7be2ae2e2bd54d9d7106e1f8f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1289529339785346916903026688" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218202, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "186000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9ha7XH93W0GYZ8lQF06o6liFwlRZyckUrPuMfIZlhgs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "2211550908392094885149147136", - "unlockhash": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b" - }, - { - "value": "1099469281563590914612494336", - "unlockhash": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02" - }, - { - "value": "1049983046166954282914414592", - "unlockhash": "2a6f37165b3ba7acf17cdd7c558865f5f247ad8935a33e66988b52a21ce1c7cdd8a42c122f59" - }, - { - "value": "1012951460476384674906767360", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "2829537107226509714007261184", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1126432968139758653524672512", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "1002010704117416154508132352", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "3316472088970518567522926592", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1074939377262532085016821760", - "unlockhash": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d" - }, - { - "value": "17584799560775305206901506048", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1063549033743157863745847296", - "unlockhash": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b" - }, - { - "value": "1035695264149104748315279360", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "4942313269097631938705883136", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "2005104384923285024886751232", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1003991626554240498189205504", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1535636398657168605548904448", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "1358825583469361581437222912", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1194990885162316987641102336", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "1140898397641053200611803136", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "2124561706197486881789181952", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1099462776226511837588815872", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1043686610954443599316353024", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "1059830480173777119180095488", - "unlockhash": "79fff10de35f8b6c4bf6fa070394d343d068ed981cb46cfaba2f58c142b3f4e32665231fbff8" - }, - { - "value": "1156858503397706392027529216", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1030893999760679894087892992", - "unlockhash": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f" - }, - { - "value": "2035455527644517280302235648", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1176744521711636952091459584", - "unlockhash": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7" - }, - { - "value": "1251762705584264386104262656", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1490534178378959212568903680", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1258712968142735084686934016", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "3930639867076024022062858240", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1048525126662102050412167168", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "1037111641924884908843925504", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "11545271227848219118433992704", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1082495782912668987177697280", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1678978449259050455328096256", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "1265636256215064086744924160", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1815130067622046062583218176", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "1030726280823828242350604288", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1794947902488516016486744064", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "1039224396462724591356477440", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1213031620318817442640691200", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1085253226789743348045840384", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1124725525300602041911476224", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1027152879726453692866232320", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "2420126169146622647147167744", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1070586217583196439542956032", - "unlockhash": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d" - }, - { - "value": "4211334114584715294664556544", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1046919301817881031601127424", - "unlockhash": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3" - }, - { - "value": "1049097172772261592294391808", - "unlockhash": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pnrOv7B2wdykCcm+SrH0MLqCuOcUS2YZbt3iRl6zoNSZhOBWTuDY7UIe/Nz1QEWJSqVhxIuaFTx2MdJmnp6GDg==" - } - ] - }, - "transactionid": "63ff76ee93d7dcbd95e85af23a4bd9e400c60e11daada151dd7f0c0c4e526ba8", - "confirmationheight": 218059, - "confirmationtimestamp": 1564442095, - "inputs": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "401a01089e44b0b8f6f5b3a650313b0e2cc830ba1dfbf133207fe9cf8c76cab442ae165eaa22", - "value": "103834808551996526300384952320" - } - ], - "outputs": [ - { - "id": "b7cc5c0f5b65443c6d143dfd87c3d165c6258924a844c85eb0f4d700e5f35f3b", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b", - "value": "2211550908392094885149147136" - }, - { - "id": "44555635f5e528edf762b2cd7425f83b9a586a087fadeab56edb9290adf00a6a", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02", - "value": "1099469281563590914612494336" - }, - { - "id": "7457dbe932022e32f5911a751b791f0662c754dd9c2da36418101e110194b387", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2a6f37165b3ba7acf17cdd7c558865f5f247ad8935a33e66988b52a21ce1c7cdd8a42c122f59", - "value": "1049983046166954282914414592" - }, - { - "id": "cbcabcf0f5f569d4fbcdb36a3716fdcc3a69b7619684743ab2c2f4d8de08b638", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1012951460476384674906767360" - }, - { - "id": "75d5dfe6d60163a3e2433de8724a6e8b61bf6ced76fc6b339c86f2bace0917f2", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2829537107226509714007261184" - }, - { - "id": "1be6812de4b28c59ae8ac51cc7f4dd4318282384bfddd4bcd14d1821efe6150c", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1126432968139758653524672512" - }, - { - "id": "2fd13ec132fd0e865faa013857f1c04ae8726b088cee5c826ef883746fb3b6e2", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1002010704117416154508132352" - }, - { - "id": "8a4ca10eed85bca1326ef5c077ec0774cd38932961700e5310b4cda4db66ed7e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3316472088970518567522926592" - }, - { - "id": "d1e6b34e2eb7ad37509f224a54e6e473c987746142b69a8dbf82c223e7b9c995", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d", - "value": "1074939377262532085016821760" - }, - { - "id": "ba179e1c933d8b020a348422fbd2c8e4f954f19302fc9e3517a77a810d1901c1", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17584799560775305206901506048" - }, - { - "id": "423cb85d18261249f17c7262bdbf85bb318d5143f453833282de1969bb9a01fd", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b", - "value": "1063549033743157863745847296" - }, - { - "id": "594e1aaabde1065e0a50937fbd01ad94a510f1ea6df4a2a6aafeb4551cdb3bdc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1035695264149104748315279360" - }, - { - "id": "8f9db838d87e5bb5c45d37f307a8c3e030218dbe3dcc86fdd842849ae9559fe8", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4942313269097631938705883136" - }, - { - "id": "9a86e1d64b9f8ad805056916a8caa634e760fd3bca0630f6e3c45960f81bde8a", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "2005104384923285024886751232" - }, - { - "id": "cbfc096a419be32e24a5ade2c11e915d6bd4864de8a141dd8ddba18e03177ce3", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1003991626554240498189205504" - }, - { - "id": "a3d4dac2425f6292ecb87b18d4edc008b66b4623bcd36799666558f916c535d7", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1535636398657168605548904448" - }, - { - "id": "9a304ab95875a630180f22714506877cd0b0b9e69eee6816828bfbe5483f7e22", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1358825583469361581437222912" - }, - { - "id": "3b0e6bc15bd7b3094930be8761f07eb8fee7a691b74764fdc5065da64f54e30f", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1194990885162316987641102336" - }, - { - "id": "8fb45a9bb2f1c84630ad5dd1737163ad208ef5f139505527a67a49f2862432b4", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1140898397641053200611803136" - }, - { - "id": "3f48873be1ecde469fcfc184c0318c6a34a64437692d4b2885dcad081fc45e03", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2124561706197486881789181952" - }, - { - "id": "b4860b3b71da4d2eced5315ce231f1e681d45bd6f128124242d3612e1e3bd763", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1099462776226511837588815872" - }, - { - "id": "88bda027faf6346c0f45ced591e05a465248d56ccc1926231f88de5e3d4be2f1", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1043686610954443599316353024" - }, - { - "id": "00b4d2cbfec555af42ec028d493c9fc71036109448d721b882681e1ccc5f4e70", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "79fff10de35f8b6c4bf6fa070394d343d068ed981cb46cfaba2f58c142b3f4e32665231fbff8", - "value": "1059830480173777119180095488" - }, - { - "id": "a85f9fc69dda9ab54e310f0320ab438e30a1c465d9c6519fa6ff3061a8c896fc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1156858503397706392027529216" - }, - { - "id": "724dce90d11944241102ba6e97e0ec44ab077d1279b9ba4db96110838889cb22", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f", - "value": "1030893999760679894087892992" - }, - { - "id": "4d80bfe14f7bc5173ba585e193a230bb594ec9dda13520cbf9ced64353f279cc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "2035455527644517280302235648" - }, - { - "id": "e99a0b033927d47f8cab57ce715276a2d8f4a3104d7849ef138077cb3f9875e5", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7", - "value": "1176744521711636952091459584" - }, - { - "id": "e9ca72ab99974ef0a3e22fbd06974f0e4863ca4d53c855ba5d8ecc5a270fa4b9", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1251762705584264386104262656" - }, - { - "id": "a2bc2a2e8c5fcce5fe67555d819776ad516170f600c17b94784f9b273671cbc6", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1490534178378959212568903680" - }, - { - "id": "30a6f13b8999de1127d967d5140093605db84f76b27091275b1d97e097d3c612", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1258712968142735084686934016" - }, - { - "id": "c5292f43877300cf1b95d24c6e22a8ac60368a238681676c10999d2f5f55724e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3930639867076024022062858240" - }, - { - "id": "cadeaad5dd22de7f393f2620d2c6a3a5ff92cbbe0b78db33809b44b9a690942b", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1048525126662102050412167168" - }, - { - "id": "ef63e16d2b586f032cf8749146f7943b9e61164883fe74772addc3806f694db9", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1037111641924884908843925504" - }, - { - "id": "d5928cdf657a1f95aa6533bf1e0519fded39cdf257001e25f2e536976e2da447", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11545271227848219118433992704" - }, - { - "id": "eb1875de6a2d90548c4a6b934fb450dba3496d218e15319a0ad8d269f5174e57", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1082495782912668987177697280" - }, - { - "id": "9fc89adf1dc754b99c8e10d88bb931aa9f322ec586c9c2e8f948156aefbd0607", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1678978449259050455328096256" - }, - { - "id": "f45b386d12d8f1182b9057995ae48f834b0777151f52532f39adfa6468bb76f6", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1265636256215064086744924160" - }, - { - "id": "845e850994b3eb79830cdb5423b4c29885150541c08135bdc367b42866967e7e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1815130067622046062583218176" - }, - { - "id": "7baf753447029531912da4febdf108ebcc9782a3c157cd7324a546bb58a31fc8", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1030726280823828242350604288" - }, - { - "id": "311d13bc3940d14c1cae2dbbef8cfbaf2f540c07b1436cf3490c07b3338e1b02", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1794947902488516016486744064" - }, - { - "id": "78e8d34a3d948f7adc890a67c76aee7116901fdaa8d0b770bd5185693b4cb37c", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1039224396462724591356477440" - }, - { - "id": "6d13b12f1be011c9ddb3688a7057bf543e630a7801991cd5cd8a5c4a440edcbd", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1213031620318817442640691200" - }, - { - "id": "e61f430a7293ad4d865edc3aad56754ba92f2793a5ee951ae6fbcb59f9330dde", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1085253226789743348045840384" - }, - { - "id": "d7ccc2e86531786f3c0f6f1247c5f9c18a091bd3aeeff18baa85e445c2b07ea4", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1124725525300602041911476224" - }, - { - "id": "e9db99df67f94622710aff1fe6db4e05cf755f4ce78844391710945ffd694f24", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1027152879726453692866232320" - }, - { - "id": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2420126169146622647147167744" - }, - { - "id": "b0486d8ad9f01db93d03ec937a634e83ed94dab358babdf78a17b001dd8001f3", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d", - "value": "1070586217583196439542956032" - }, - { - "id": "b854f70e1f6ed1c45c0950b69b84dc467b6552ee3ee2371e8660f979492a338d", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4211334114584715294664556544" - }, - { - "id": "046eccce38ac3904173936d7766673943daa337883a5d3507b9c593f40416b00", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3", - "value": "1046919301817881031601127424" - }, - { - "id": "4615ebc3516fa5788a7e033b43c82dc0e1f04aa65fe064671c9e2206776c9106", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04", - "value": "1049097172772261592294391808" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218203, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Mj5acb4TLV6JPa+Cku18N1kLauI+rRQFAZVlPhH6y6w=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1170007268648115671356407808", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1125489800219710242033369088", - "unlockhash": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e" - }, - { - "value": "1132213685417073271974559744", - "unlockhash": "228ee64aa39db7a0ed3ea36a8cc581622e2a7e62ed946d5f398029b1516618383d0ea45ce0fe" - }, - { - "value": "1076525162364527620871946240", - "unlockhash": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770" - }, - { - "value": "39962206983968565370397130752", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4779817633086019634861178880", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1046478858101055260400287744", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1020765327460682419351846912", - "unlockhash": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc" - }, - { - "value": "1084764811730102409863102464", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1676761948039407828190887936", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1095194776097994565909741568", - "unlockhash": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee" - }, - { - "value": "1424300313819993032001323008", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1307883225791742274508423168", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1141209297181574608942006272", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1039774633401174851225387008", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1079429292687597918848614400", - "unlockhash": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797" - }, - { - "value": "1037551007950942014512562176", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1023522251143869716483801088", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1197264148475540007785857024", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3166343733058723909000495104", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1490522774325683789460668416", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2035374999866790131569524736", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3978111105481617129298984960", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1247193257481148259923132416", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1215144563135183534572961792", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "3673256794766290065077305344", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1178981396377786962755420160", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1233040445220295719323172864", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3535414921800069067757846528", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1093875585586539263116181504", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "16717526593860446164604682240", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10844242488921420793951289344", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2398863643457125825250328576", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1153327803624800917039087616", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1312661310983783970041233408", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9312566686195349708737609728", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1013716705927780277275066368", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1069701853517485240987942912", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1054057345352932018417647616", - "unlockhash": "e4178dcc05e185dde1c2d2f20704779b87a40d97e5aad636bf929d471ca48ab63683be299140" - }, - { - "value": "1107484027249366242072641536", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1043032360055249046739959808", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1032716803659017603724476416", - "unlockhash": "ea0b6c2524e3c8ee5f79184f6853860108036e7714cd74dd0a575d77d3abc00a1fcab854a2af" - }, - { - "value": "1052605759697457173340094464", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1460045543671530256496328704", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1037870689574652569511264256", - "unlockhash": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675" - }, - { - "value": "1057810775133203098890371072", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1665060200036336856161320960", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1834216270875838050116567040", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1013016388651112408874090496", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1069457883534004889570770944", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CVUlyscBggqVeuP5Ls5KeWiSwUcXClDfu1hvXcOfTZIGPlJB0VBaMhARX0nxhY8CFFi3kVZulKpkDRgdzviuBQ==" - } - ] - }, - "transactionid": "f8fd218d272359d994f1da7d578d7fa6ac38e187ca5df9ee16988cd192a08faa", - "confirmationheight": 218065, - "confirmationtimestamp": 1564445652, - "inputs": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b2791c704bf92fd4d73624b7a4327b40919e87dbe2488c8d048f443370390b76c428ea40dc52", - "value": "146518641136664709663176900608" - } - ], - "outputs": [ - { - "id": "31a2681230b249193822cc5529a295bc28e2e123690cd473ea434ea6c9b56147", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1170007268648115671356407808" - }, - { - "id": "64acbdbe388600224002b36b9582b362c658bef01fbeac8f7c3869d228fa2636", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e", - "value": "1125489800219710242033369088" - }, - { - "id": "f19817aae98709e6663d2d1e3e73c64f465d3467ae55cc6f76f2038e4fcc192a", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "228ee64aa39db7a0ed3ea36a8cc581622e2a7e62ed946d5f398029b1516618383d0ea45ce0fe", - "value": "1132213685417073271974559744" - }, - { - "id": "5f909b80a75946fdeb60547dd7788577e74030e037a41551957161373007b1ca", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770", - "value": "1076525162364527620871946240" - }, - { - "id": "7f5834919a10337e5383383b3066fb5e32ea2eb3af54d5d88c8f76fdcf2c8694", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39962206983968565370397130752" - }, - { - "id": "9813fce18d7c0a6462ccfe71f75002c7a23a48313d4bc1fbc83bb4024bd1fbad", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4779817633086019634861178880" - }, - { - "id": "8c47fc8d4470be9aa92025ef8121273da3956dd6f0614fdb0b40fe6ceaeabf91", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1046478858101055260400287744" - }, - { - "id": "2519cc96f99a1e31c14d1af85fa703ee8aaa51043b78d40b20e3903d88900eed", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc", - "value": "1020765327460682419351846912" - }, - { - "id": "2dcfb8e64145a3a231d38549568f2a82fe731e35bbada63f7cab1e2f31bc01a2", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1084764811730102409863102464" - }, - { - "id": "90b5ead5205fa730a7d94556107d5cd47f8876679450b966f38167fac3ad6fd0", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1676761948039407828190887936" - }, - { - "id": "c100d01c27e94ecaf1538bea77efe7b7a1f19aa04bfec0a665f78ee7aefa46ed", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee", - "value": "1095194776097994565909741568" - }, - { - "id": "f0f26257725cb31d2c0b39de1492cbac5069fc25c97b5e69ffcad94685fec03d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1424300313819993032001323008" - }, - { - "id": "eb404d7a171b63eabd82c2c9cd94601ce05f9518776194ad1dd19fa31d5b0d90", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1307883225791742274508423168" - }, - { - "id": "8cdedaeea45a7749d46c7761419241d3b98cb99716227ed31275cb5ce5282063", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1141209297181574608942006272" - }, - { - "id": "64d039ec9d0c2824fe7615e5a13647cfdc46715a55cbaa2a919e13d98ca183c1", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1039774633401174851225387008" - }, - { - "id": "fa541578ed64094c3e7611dc77d97f064db13c5e73dc30b82cc2de6f44c30380", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797", - "value": "1079429292687597918848614400" - }, - { - "id": "38a639daa077d3b3ec300b2c1fce51e42f0d7de71b7ad5a2fba2fa2a8f6ef476", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1037551007950942014512562176" - }, - { - "id": "335e7e0d4b5d7eb759bec19abc92c39511deb01e49932c8d9bf35525e3e84507", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1023522251143869716483801088" - }, - { - "id": "61342419f91b859d7414a49ec815614da74e193a1881ccaaa40d0151c9822cda", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1197264148475540007785857024" - }, - { - "id": "7035cbf211b5dfaff73f62010ba5e40b1935ff52dedf5b5c720ab2bd05c53b48", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3166343733058723909000495104" - }, - { - "id": "4928c3ac5bd5a503ad500015141fd836544a27ba902b553cc2fe3a28cf67fabb", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1490522774325683789460668416" - }, - { - "id": "de48c5fcf489120691b282e7e052198874d676d9a203a2318aa2257e80855e33", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2035374999866790131569524736" - }, - { - "id": "5e2589fc7b5f13a64166a12bedadf885743b952475363c62c9461fcc6d56a64c", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3978111105481617129298984960" - }, - { - "id": "c6af93bd044213846936f578803e9128d633d4b81844d591e007858fc2b63bbc", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1247193257481148259923132416" - }, - { - "id": "52954f1fccd5f7e9f0f253638b738fd55c4fcb56adb0e562e704a583ca3b0212", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1215144563135183534572961792" - }, - { - "id": "749cf24b232bc0358e2d069e5214a1a423a73614b71d14c5cfb36721cba6f3e4", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3673256794766290065077305344" - }, - { - "id": "d9a8e36cee6f905ad2e00f85ead25459d0c99f141396dc21a82b61029d76b6b6", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1178981396377786962755420160" - }, - { - "id": "dfb9ff6157288e93d203d7325557d980cfdfcdcac2481dcc9a246ed8b9143406", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1233040445220295719323172864" - }, - { - "id": "9291730a4f266f4c1adae66831f92d0e95f408f53c6a41173cdc9dc17e5213c5", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3535414921800069067757846528" - }, - { - "id": "656e6b39d015612e01750abd49d588beaf578a6a54df48be011d8d036a4d5899", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1093875585586539263116181504" - }, - { - "id": "d4f76a3e2ff5fa5bdfb1ebb09e9e7dfff242b9305f34b11294c14b18eca3c3da", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "16717526593860446164604682240" - }, - { - "id": "dbb11887cb0b39c5fbdececf4b5cd37f19157a8ac9644f0aed9e80ec0c05538d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10844242488921420793951289344" - }, - { - "id": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2398863643457125825250328576" - }, - { - "id": "8e72531ce0e127fed1c25f310f39ff4cd901cd43b1ee29e6ccf0064d591600f5", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1153327803624800917039087616" - }, - { - "id": "c43e277c0d0892dc0badddf7fe9dda70dfaad1211986426be88215e99130c31e", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1312661310983783970041233408" - }, - { - "id": "6f8174b0b836bc447d4acbbce04cabf89eb4500645cb20a8e77fe320193e83f7", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9312566686195349708737609728" - }, - { - "id": "2229cc99d13cf61b170f2b2d17df1cb70d5743285ebc9d3092cf15ea7b62ce06", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1013716705927780277275066368" - }, - { - "id": "4ae1b1be932ff327313e67414d7caeef5145d3528c5b441949a6382537f33848", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1069701853517485240987942912" - }, - { - "id": "bc8638bef6b1b98b5ebcb29e59955451de00af1f94b9518ad72dc7a4be01c6f2", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "e4178dcc05e185dde1c2d2f20704779b87a40d97e5aad636bf929d471ca48ab63683be299140", - "value": "1054057345352932018417647616" - }, - { - "id": "487836a818c91644151d312970d36c08eca803abb14484ae413e0aa723340aea", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1107484027249366242072641536" - }, - { - "id": "17bfb9fce86ae147c17acae8e557a05e9b29204ea65d590187d695605775e705", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1043032360055249046739959808" - }, - { - "id": "a25ecd80e41ab525708f05e3ebe98240872445213a5bd597d15d597692e92ffb", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "ea0b6c2524e3c8ee5f79184f6853860108036e7714cd74dd0a575d77d3abc00a1fcab854a2af", - "value": "1032716803659017603724476416" - }, - { - "id": "df7c1ab138ef8c18137a48999ee0025cf7ff8181e5526bfdb644cac144a48314", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1052605759697457173340094464" - }, - { - "id": "d3e96ef8e67cb5adaad6c468021d18ec1e1b4f65bbbc3c5f3c5c5d2042f5ee38", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1460045543671530256496328704" - }, - { - "id": "fa3d0f65330049708241110d830d7f832cd9dbc722f39449725bafc5e3fa564d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675", - "value": "1037870689574652569511264256" - }, - { - "id": "6919b921d2b464478ca676a420ece0cc8aa99ad9a36d19b5588147f1ae5f6b1a", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1057810775133203098890371072" - }, - { - "id": "81da978ccdb550314591a49739fbca7db6ac8cb4eb70565387e216f2b496c7a3", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1665060200036336856161320960" - }, - { - "id": "2a6ced5da1af66a7c0a6e11ded037ca033e25c9e3e0cd82a2d392251cbe99545", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1834216270875838050116567040" - }, - { - "id": "85976b2467c23703450499a7224432d40f5626679308572371a80b18395037a4", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1013016388651112408874090496" - }, - { - "id": "4be6fd08bfa262a629a2aa69149ae4ec6035143b35283db9f376886adcfe6590", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1069457883534004889570770944" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218209, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "JI2kfsLMEHqfKJa6qfUkPDQ2RL/dEYqEMT59O8mmHyA=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1124063908863281902271594496", - "unlockhash": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb" - }, - { - "value": "1087137744499316909004554240", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1042894855544917126321307648", - "unlockhash": "616ad62221e96f259f290816e50dfbf1ef01fd221ac65e973648400764b2914c8aa26612db1d" - }, - { - "value": "1168015947400846360599330816", - "unlockhash": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb" - }, - { - "value": "1024567925114239346821562368", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1265443751165462284812812288", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1090921198670357364761165824", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "1188648884472856377305858048", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1095841119286221231522775040", - "unlockhash": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72" - }, - { - "value": "1053729093261930698857840640", - "unlockhash": "325195e686c580197db95ace9279f31ac5fd3063c5f2de3dd7749f2f11a32402ea3eab1b0942" - }, - { - "value": "3814242765885592795726479360", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1112690346331496387055452160", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1047769548432324068274470912", - "unlockhash": "eda543a27b336e8ef796c8ab251509ad91eddea3b8466460fe01ee8464eec2220aa14f4eef5b" - }, - { - "value": "1033812856511812167401734144", - "unlockhash": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd" - }, - { - "value": "1033808250452208736205537280", - "unlockhash": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef" - }, - { - "value": "1100846322946558308008853504", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1011815299780864400728522752", - "unlockhash": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7" - }, - { - "value": "1055072208396347122840207360", - "unlockhash": "e961680769443297cda7573b011475f8a876a133428f9d9f1b6e26bc51b26ed3f45b650d2c43" - }, - { - "value": "41582799114915681892573380608", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1080190464709287089266491392", - "unlockhash": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5" - }, - { - "value": "2151325366886208981430173696", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "2403135930122169566135058432", - "unlockhash": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290" - }, - { - "value": "4873288510045936015189737472", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1047324972788367492978311168", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1033923268688994211924541440", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1092878230761138034628755456", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1117071769827585147889778688", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1115401219096709942407856128", - "unlockhash": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf" - }, - { - "value": "1052374314406901547081891840", - "unlockhash": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981" - }, - { - "value": "1122759973106837178231554048", - "unlockhash": "86d137e05862a17a1e8a7b73a23b3847891aab73e74ff154e5ba8b5e6c955c970a76a99b3617" - }, - { - "value": "1006339687281834434927525888", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "1872229943696752916777926656", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "1067923984798181003240013824", - "unlockhash": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193" - }, - { - "value": "1895529753104956570696941568", - "unlockhash": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094" - }, - { - "value": "1056052882479910671467151360", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1058387718233692264315486208", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1267974314885240438601547776", - "unlockhash": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff" - }, - { - "value": "1262743626231981769654009856", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3250742800966139638374727680", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1502851782295060926416551936", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2190272802006051736497684480", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1675416207790375310830075904", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "1851777709346367192948539392", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4179968356360436140419842048", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1468588744637745905026465792", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "3708578872158819420269969408", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1108765151392874021875875840", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1231549591368290034161549312", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "17479582661175214536709373952", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "2458820731707286914208890880", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tJo9uaa/PUIiiV8YjIsNsGcCRqqzCu3PteNMbYOyeMmHLkgyKBbLfIrumGG5gnMGpVFjJFq7EGBXoOdBXFKCDg==" - } - ] - }, - "transactionid": "b0038252f9a05e4cddc8001e8a5e3878fd68f333bf55fa40d98f3ce2572d8d05", - "confirmationheight": 218070, - "confirmationtimestamp": 1564449063, - "inputs": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1d4738adc59f8619e05b3701fc2a9d5eb976169a27df4377e67be3b9f66ba34e0fa69f2e63e1", - "value": "134618132484289662535677739008" - } - ], - "outputs": [ - { - "id": "b1972ca0bf9d8cc4d0eaa73561815c25a6546638830eb3aaf35cd41095427066", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb", - "value": "1124063908863281902271594496" - }, - { - "id": "790fe37fabfd3625c5de837316e0557e2226cdf2e31fbb91dd04dc19f6ea10e7", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1087137744499316909004554240" - }, - { - "id": "db5188851e90c14873f7472a06627edada0c6c8b8e6f90d0dd3eae9e91f8925c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "616ad62221e96f259f290816e50dfbf1ef01fd221ac65e973648400764b2914c8aa26612db1d", - "value": "1042894855544917126321307648" - }, - { - "id": "e58c28aa951f38d0dfacc17b7d92078fb32a460b0fae9f2899d8d2f1e9d86bf2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb", - "value": "1168015947400846360599330816" - }, - { - "id": "65d3213c2378b4ee7e8cd002e4e634333b6c6b3ad838a8155fec1c0e1f1afeab", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1024567925114239346821562368" - }, - { - "id": "cdcb33bfc9812cb99aa90a2a78e17587bbd7ec63b11fc35a37154b02f4ee24e5", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1265443751165462284812812288" - }, - { - "id": "ab102809c06bdc72774716fa89c0abdcbbc86230678814323274d9c4795d7754", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1090921198670357364761165824" - }, - { - "id": "9960d606ff7a7affa8fb7f48944267053721d64a4305e2e83642a58c14ac1e8f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1188648884472856377305858048" - }, - { - "id": "27a39a3bf18ae480d16938f7da2f5b21a93e0c15e6095c291776ff741d3db1cf", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72", - "value": "1095841119286221231522775040" - }, - { - "id": "38d4c796ace5ecb7607b94007840f9f9aa1e8e21ec0117886608b2b2469d009a", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "325195e686c580197db95ace9279f31ac5fd3063c5f2de3dd7749f2f11a32402ea3eab1b0942", - "value": "1053729093261930698857840640" - }, - { - "id": "f045f1ae247d2cfca91e23462341fcf79b52d2b2aa9f3b234fff3978f7945a0c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3814242765885592795726479360" - }, - { - "id": "14de2f21782311b8f86c6b5724944bc925ff150695ff57036899838f9726addb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1112690346331496387055452160" - }, - { - "id": "6bc1d18a9994736b26c0c88ea90ab951f916ba7319e2230769466bca093f4f83", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "eda543a27b336e8ef796c8ab251509ad91eddea3b8466460fe01ee8464eec2220aa14f4eef5b", - "value": "1047769548432324068274470912" - }, - { - "id": "4759f5920db306a5fc85ae66fed1cb07cf5f9d2be639623b70d98138c9f66e26", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd", - "value": "1033812856511812167401734144" - }, - { - "id": "e53a36c7585693a464e942b89ec548ff9c71197b46ab1afc688e508b6ccd6f3d", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef", - "value": "1033808250452208736205537280" - }, - { - "id": "1017abc3d4140e92258cd7323847042c6f32e54fd32decdbfcaab0627bc13666", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1100846322946558308008853504" - }, - { - "id": "f02b3a5fb66b9aaf46477f591cf87b6f8fbdfe058bb451ad002ef657bef70592", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7", - "value": "1011815299780864400728522752" - }, - { - "id": "da818dcfd17be77051e100cd32dbdb19e0bfcf17bbb2bc84ce3006a2caf276f3", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "e961680769443297cda7573b011475f8a876a133428f9d9f1b6e26bc51b26ed3f45b650d2c43", - "value": "1055072208396347122840207360" - }, - { - "id": "2724298f635efd75c79dfd7544200debb9af9556788bca4ff962134fde586c7f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41582799114915681892573380608" - }, - { - "id": "dac5db4aa2eff69cdac44ddd81606a6d27170238002f904d101b9a712a288c5b", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5", - "value": "1080190464709287089266491392" - }, - { - "id": "7bf941fab5ad2c4e623edf9d04b9a199b1a49044fdab27dc30c9373b7c944ea0", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "2151325366886208981430173696" - }, - { - "id": "3ad4d3b88ce2d698a5edb6dcc99eb2225c63d2df36ad88cf69ab69d66b0df698", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290", - "value": "2403135930122169566135058432" - }, - { - "id": "20ec91aed5219ff675d80c44186fddbd93e7c3feafab9741e4e67e058e45beeb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4873288510045936015189737472" - }, - { - "id": "3a5fa0a98155ca8e8fbf932b0629a8f6ed7d7abeae0c5a6cd860731ba244028d", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1047324972788367492978311168" - }, - { - "id": "6e2da9e12e138d35e29322e7ea6458a49dce633a701874cc8a3f37b2c8ba448c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1033923268688994211924541440" - }, - { - "id": "e62e68759f3d7b788e8e9425d6e476e02f66f1f778a1ad6b0562affb42578853", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1092878230761138034628755456" - }, - { - "id": "630a91ee12599b265780046bccce19d07ead41d1c5c5d89aec57dd3dd7773659", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1117071769827585147889778688" - }, - { - "id": "cfddc510deb8404eda4004c94d14339cb51889c3a92a201666266b6601aaa864", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf", - "value": "1115401219096709942407856128" - }, - { - "id": "427666f47aa8259d254015b7a12d065d4786f622e9700519654d5367f5717e46", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981", - "value": "1052374314406901547081891840" - }, - { - "id": "6cc8ff12c7a559fb98c0e6c70ba5384eb2883a9e4044888cf6596af4f45bd015", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "86d137e05862a17a1e8a7b73a23b3847891aab73e74ff154e5ba8b5e6c955c970a76a99b3617", - "value": "1122759973106837178231554048" - }, - { - "id": "e9e7a5d2e0e78219b0178c2c84da858941ba311cda50caf14c62b69ea357bdd3", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1006339687281834434927525888" - }, - { - "id": "1f517ec30edddd2c163b402c7e953f899ad9943c37cb98b0eac3a470c8bef63e", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1872229943696752916777926656" - }, - { - "id": "bd6c06614dfdfb2a2dc8c0847841909f3d08e49365e36502bff57d6856b9ddc7", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193", - "value": "1067923984798181003240013824" - }, - { - "id": "1c56a1eb389120c8189f0673f02e382ba3e98a77380f1b5024985b8ceba5f781", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094", - "value": "1895529753104956570696941568" - }, - { - "id": "026d3fb4f33bb8b6b2c5b55b9f3dceeeeaa91c51a8ee8d567f0e5bb6ac47f95f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1056052882479910671467151360" - }, - { - "id": "393bb03b6e49eb39bff247b339459b195895f656cc91f1e236261d5835dc7108", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1058387718233692264315486208" - }, - { - "id": "8b4dc5dc9f9d4bafc4b688f4e1ccb2b33f3fa6431a9f74c8573134c1db29d0e2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff", - "value": "1267974314885240438601547776" - }, - { - "id": "f713f51e8cc188d1956ca645b32ce7feac0e1f65dde3a44f2ee07ed4be50af06", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1262743626231981769654009856" - }, - { - "id": "5214321fcbc8d336cf372ac5b57d9dc354bc31c892223bbff8fa41f369d01842", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3250742800966139638374727680" - }, - { - "id": "070fc269e2193b49d42fd0ef2c7830161f8d309c9f46062c15aeaf695ff55b1e", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1502851782295060926416551936" - }, - { - "id": "03a7e44cea8e3507636cbf49cd148e3ce9226b564cb314217bb5fa6ce5fcf9cd", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2190272802006051736497684480" - }, - { - "id": "48b679705041ef15187e9e9371c72332b8ecf111a56dedc8ae311df77d0f8592", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1675416207790375310830075904" - }, - { - "id": "a08f37933b1a2cac401120cdb56804d3885c95704f4ddf68043805df834491a6", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1851777709346367192948539392" - }, - { - "id": "a4dc007126538ad255db0cf7b1527a30704b5588066f9176efa70d7adc4c7061", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4179968356360436140419842048" - }, - { - "id": "966cc309f50aaf7eea38be650224e982a6c48fc5f6b6bd02f0481d7350f3c5a2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1468588744637745905026465792" - }, - { - "id": "2cda020be1d613a774620645c3495ef343e73fae098078ad712b5e6ef020a7a8", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3708578872158819420269969408" - }, - { - "id": "69d621de7fdfb3f4e022b85667cfb4877f2cba552255c1caf6ef6f98485893dd", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1108765151392874021875875840" - }, - { - "id": "af146520cc6f55a7e075138169e4a3d07590518dc007f7cc6043a9ce669d0808", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1231549591368290034161549312" - }, - { - "id": "74e53773aa9a9cd0369d79bcc20238c1db531a304613af5365f3ea6b4a0b3afb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17479582661175214536709373952" - }, - { - "id": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2458820731707286914208890880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218214, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fA286eHqhYEMqiXI3HxFf92EAcfUfMClFtxJUKVIMws=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1121506959340134179064512512", - "unlockhash": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f" - }, - { - "value": "1152640894085953041159159808", - "unlockhash": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c" - }, - { - "value": "1027134278166328675695312896", - "unlockhash": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69" - }, - { - "value": "1039437677340698112441188352", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1096112830605318792480292864", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1014190488557916262797934592", - "unlockhash": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c" - }, - { - "value": "1020754222146573533712220160", - "unlockhash": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29" - }, - { - "value": "1162782117964971307262541824", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1677999641335010017140539392", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1488620700301502101902589952", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1136459312467095521782136832", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1100743132145574630735740928", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1066293700307831709960765440", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1205077252216608629481537536", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1216563708720664684085116928", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3244107277053309817697861632", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1549872596434604058589790208", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2169002919741756134280658944", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "4082651102860063836978806784", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1385140459513090398652203008", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1185503821496165646297726976", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1043563514295653805978157056", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "1137438313294967178920984576", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "3712193265892502004824014848", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1119975559848016521522577408", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1240673966084106563996352512", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3589893215147228236078907392", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1002862787383801620034748416", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1445985944328724055746150400", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1093571017642476083516801024", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1058989485682308598959439872", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17055169017810524179580059648", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10776052960481113005631733760", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2584212828375632800773046272", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1210877490654857658449788928", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1300212901390975944187969536", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9575208496673071193149931520", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1000498744213128581081464832", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1008228105771331233169539072", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1054462914272622506337501184", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "1064171696455074485837627392", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1244522119409330648695439360", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1021742204748781535506956288", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1216118921522997285974704128", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1366521377591089748765573120", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1023489069745641136057892864", - "unlockhash": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22" - }, - { - "value": "1047665800871444613177835520", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1051939926534653531366391808", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1705538776851545097874964480", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1046391733882684052241104896", - "unlockhash": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tZ5q8Lqe/V16Hfen1ZvQHzzgrkPYOgk7V+qY2iHevHMQYVfxSqJpajTCYfPbSJGcEDQezQ/T003SF7j46tg0DA==" - } - ] - }, - "transactionid": "7fc472ec610dc2a82b6ee91fb4111f9494efa0113fb441839da0763f7f9ade19", - "confirmationheight": 218080, - "confirmationtimestamp": 1564452767, - "inputs": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "9ea17d97c5072357f221c374d61f2ed824e0379c3b687596900348f310214b1eb5059344c7c7", - "value": "104941007249657454999636295680" - } - ], - "outputs": [ - { - "id": "2cd4d9ea9f34500ca60ddc7dd78cd2aad8a8a948caeda0d0f15e383b0f1b461d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f", - "value": "1121506959340134179064512512" - }, - { - "id": "b56eb85fa2340ad1882e169f4e2c5427f20c9863087fcd5b22cdbc078779912a", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c", - "value": "1152640894085953041159159808" - }, - { - "id": "65b0ab74c79e7aa6ed05d9098883a8acf1a77f78d3d13ef769840150e6ffc610", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69", - "value": "1027134278166328675695312896" - }, - { - "id": "c1a9a71f0142f42ef9ab21fd6406f7c2f43d7071200d6bb10c0737f8696428bc", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1039437677340698112441188352" - }, - { - "id": "6ef5c0a5dc8c54a0e1cec8aca85c4300fd5a687714d598d71d470be67b825f3d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1096112830605318792480292864" - }, - { - "id": "89a0e3d50f426ddb531ea6471b2916f81d90eb2fd5f9f3b0f8e89f74513bf549", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c", - "value": "1014190488557916262797934592" - }, - { - "id": "dff190d2cf499de7336e26c6010ed5bfd058d87fe01eab02bca0202204e757ee", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29", - "value": "1020754222146573533712220160" - }, - { - "id": "b3d80eb285aa0cb69b3397d5396ea65d84959ae05fff44cd31246c68d3c1304c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1162782117964971307262541824" - }, - { - "id": "8e8991c4cd87755b8916e8e08fc7e10f09024e95970fd71b76d2ef132e0f9d92", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1677999641335010017140539392" - }, - { - "id": "08a331a976b24bde24bee3eb5f1fd69efc9f1bc9506ccdbda042fcb23c645f0c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1488620700301502101902589952" - }, - { - "id": "d4e13476882e66f41b6c764af432e286a3423247a61a3cf1659199f723df3efb", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1136459312467095521782136832" - }, - { - "id": "9ac54d4e86240a389f4623cc1be985a691011ed21b4605e541235873076230e3", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1100743132145574630735740928" - }, - { - "id": "e890da9568a89af95b31a123aa067c342e2c6f4d7e8e862c0d176ea2b5413cbf", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1066293700307831709960765440" - }, - { - "id": "562d6117d29893526832b8b1604117da8e519d81f87f1b8c4ccbd407861bebd0", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1205077252216608629481537536" - }, - { - "id": "ca657194e8f032ffdebd5206a40085b0740dbc2ffcb6a54fad092a8dc0adcfd8", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1216563708720664684085116928" - }, - { - "id": "a0a9053228a796abe471b6972820901dba115a66a52dac25f9d0c5b9730050e7", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3244107277053309817697861632" - }, - { - "id": "01add4f07291098929f92bfec4eeb04bae1b4f2eb25af4059361d17f7a1c9bf3", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1549872596434604058589790208" - }, - { - "id": "1a34521197a2a395d593b010511d63fff9d215c89782f975803ecac8e1b935ff", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2169002919741756134280658944" - }, - { - "id": "0e40b6c14050e8fcbc414d3e12613c095326d2140df153288dd38682a9e65cfa", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4082651102860063836978806784" - }, - { - "id": "936b1076aa62fd95f4c3b9903a5d7b0fa1c0705234e4de07b4de0aa052117a01", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1385140459513090398652203008" - }, - { - "id": "6e465eb667c7a7f5e20bbcc2f15ab2b7f818d6aeb960ad02933c83d53788ad7d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1185503821496165646297726976" - }, - { - "id": "0f973c8d5b90d5ecd834d0bb15ed45250740019723302ec7de91fd6e0c551180", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1043563514295653805978157056" - }, - { - "id": "ad6ac496f0b57cdaa5ff39ef5e9079cde6d9b8c64f5aa0023aa927ad03cfdc23", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1137438313294967178920984576" - }, - { - "id": "ca5b068e472674a9ddd6ebd3ff01667d6ffb6f55e775154b1fbce642c9bda976", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3712193265892502004824014848" - }, - { - "id": "6b5e044a51bc4e99044b68f531b0bd007e75c9a75323591b4007da2878bc171a", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1119975559848016521522577408" - }, - { - "id": "55c2e51180fe0bf975653572b7ad8a4603ad46d8fc3b09a5272ec8137671171e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1240673966084106563996352512" - }, - { - "id": "9cce5fca210813af68d01d35f2ac60f257a0eac4fdf534aa3211673d16014c9e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3589893215147228236078907392" - }, - { - "id": "592daf66e7d3d23b5122e5c2a3b6bc5d8dc6736e0112cbf196f0e71c56db10fb", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1002862787383801620034748416" - }, - { - "id": "b0288595349f33ff4b38a1b0ef25ba22e9844b20c5072cebed1b3adead064341", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1445985944328724055746150400" - }, - { - "id": "bf027ba50f4efef6e44d94ece6c3c46132a8b8e9f850366de3b7d9fd540c2c00", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1093571017642476083516801024" - }, - { - "id": "5e95ef7acce2eaecc558b05998fbcf1a9736a80aa03294ea2e811b5f18812db0", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1058989485682308598959439872" - }, - { - "id": "341a09256d56d57fef4cefc0281b2685162f7f6827b525889867497c19b34ae5", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17055169017810524179580059648" - }, - { - "id": "1073e70225900577738dcfa564e964d1484df71230863d430edae592ed3645c4", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10776052960481113005631733760" - }, - { - "id": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2584212828375632800773046272" - }, - { - "id": "96feb917fc472dfebbeed5faae6351b3c0d4914b70ba6d17c9f8a7d9f084b547", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1210877490654857658449788928" - }, - { - "id": "5576ed1555304fcbc8ffd6c4916986e376536a4dd0aa990db65a68ea02f66988", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1300212901390975944187969536" - }, - { - "id": "141122b2e7a31b56cb9a876d742190dda3f44aff9f5fee27ff1b6d394bdf8e33", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9575208496673071193149931520" - }, - { - "id": "bb7aa2aa53f6d37e0a80118caa6c50bedb4aabde7467b61e4d060b6a3dba6564", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1000498744213128581081464832" - }, - { - "id": "7f412ea3b089853bc755ad7ab982eb4744a521aea959795ba384f86b93e94b7d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1008228105771331233169539072" - }, - { - "id": "5fca8eacfc2452f0f6640178e35b16410143326a4e18955731c37cf5d8291a51", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1054462914272622506337501184" - }, - { - "id": "12eef96def288d507b97ebd8f76e1cf399fd88fd02bbdd20a6aeb61b8a9b1df6", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1064171696455074485837627392" - }, - { - "id": "32b9687009e5e92c01425f09bbca2379aaf40a90da12866d71607d26dbcbe3a9", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1244522119409330648695439360" - }, - { - "id": "44cece0870769f7e952b055fb4b7750dcf1e7e4bafc86e2afab01404c027607c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1021742204748781535506956288" - }, - { - "id": "4d3f856bfee96e4976f301aaa96cd2a9d2b3a846c214586d3fbccaa6bf5c8637", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1216118921522997285974704128" - }, - { - "id": "eedce7e0bfba757b37e9751c1aaa68e278abce30de288f2b3a5bac10d882d3f5", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1366521377591089748765573120" - }, - { - "id": "6f3a46c15ff2dcd09a6135f29d76422f77687287862d77441be24f91737512e1", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22", - "value": "1023489069745641136057892864" - }, - { - "id": "18e3e93389b4b67b0de07e7b6c61d25f64f49ac8756939a9ef0691cbed263798", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1047665800871444613177835520" - }, - { - "id": "fd43217f04143eee426ab1a6e48cf329233ded6d5100c51b2d0b6b18b175b999", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1051939926534653531366391808" - }, - { - "id": "fd92dc6548c959722d2df4c95574bda5c26e40657e81ec7c918c13dad81d67a9", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1705538776851545097874964480" - }, - { - "id": "83cffdeaae57d6bd20fb0b0f46ee4be42eb5c5c416d9ce548e8d90332fdf0c94", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98", - "value": "1046391733882684052241104896" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218224, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "KcQVWCS2tz27jyMOkbprvxuLyJeeJvLA2wvLhLsbVhA=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "3568192259803967107696164864", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "2686797296490122071582441472", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1189033575387207419591393280", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1289352091126914205091889152", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1037442203865993880397611008", - "unlockhash": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b" - }, - { - "value": "1116343583594886786983395328", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1038779097139651713493467136", - "unlockhash": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87" - }, - { - "value": "1104769081424432658697945088", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1071292118921597249827438592", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1065516851843791164030386176", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1205344647281623927467540480", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1037830636082753793210908672", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1170815086249476065888567296", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1468977678205127126100738048", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1209962936966697732800512000", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1038453027624943467768053760", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1846453772241295881239789568", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055466505709732700927033344", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1030520111991616188235841536", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1002239772633890811951874048", - "unlockhash": "3e1713e50bed28e5cf1b96f792c11c9b54d83c5564ca606f689ef9989bf9a7287aaa3ddadc08" - }, - { - "value": "1041185654481120013024919552", - "unlockhash": "c6e0c60f258750af1b9877524b3616df0f19ac61643965525b7d4ede07f4e518dc75d0e6dbad" - }, - { - "value": "1083075028716419309310509056", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1083366215273505441388691456", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1032736164739575495349370880", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["146400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MZnASfz7SiXldp4ssqmhjWXIs60pMsRSQaVfoIdBldL07eLNgHCoeiIwF5kHmJ6HvGsTwNxHjtO/+lOplIzgBQ==" - } - ] - }, - "transactionid": "ebcdc214afd2975e3a869341fbb1d928e7db2ea4acab4422029329742d2cbac2", - "confirmationheight": 218086, - "confirmationtimestamp": 1564458815, - "inputs": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "6f32270548f896471980d1d3a77f3c35cdf2817186c2b8ce45abc7ec90cfb64bfaf4f119a03f", - "value": "31474091797796342212056481792" - } - ], - "outputs": [ - { - "id": "edb6dc0166b1070906074c7fe15b9e35c8231b92ba19e9a2f898f01318d9c6ff", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3568192259803967107696164864" - }, - { - "id": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2686797296490122071582441472" - }, - { - "id": "1cdb5addeaad968c025b88f34802221fd9e20aabae2285933d9cd86ac8038776", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1189033575387207419591393280" - }, - { - "id": "e87a3aa6dc19b710c3ba3f6673ecaf89fe90a6eb1f106942e7195f2ad28f3e0a", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1289352091126914205091889152" - }, - { - "id": "4ed6c1a35a0e02e8a752e442e21d5e468897d0fa5aaee816f3e50a3e20660010", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b", - "value": "1037442203865993880397611008" - }, - { - "id": "5009e9e83905cd0cb8098f467e114332e252f791e1a21e9f47080fff893a6f69", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1116343583594886786983395328" - }, - { - "id": "e7c367b262b651c82350fddcce0f3ffdaed0e8473242d9176d52ea7adc6925c7", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87", - "value": "1038779097139651713493467136" - }, - { - "id": "b110951fc468b77093f92c5a86f4b18e3796f2a5ad8ed7a0904b50ad3d5da76c", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1104769081424432658697945088" - }, - { - "id": "974a8c5026e82e0ec4cc42c4859e691b933c3934b426516bb915d1b6f70ea405", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1071292118921597249827438592" - }, - { - "id": "947884f03b52dbb38f3b377bed1848bd00260f0f3f898c18e601526621b678fd", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1065516851843791164030386176" - }, - { - "id": "057d88bbc4a198b6727c10486db957fdbc9354ac6627910810a841a59367777f", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1205344647281623927467540480" - }, - { - "id": "a301d38b4ca4c2befc939c2862d5ac9f96970035565141e111519f51c9b66dd4", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1037830636082753793210908672" - }, - { - "id": "3e5657f558463fb8015c427c29b8f57b366f3dbf812c31def5ed5276368e33ad", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170815086249476065888567296" - }, - { - "id": "fc36f241efa3a1983e49d9bb753ea9912453fb0d4b4d2d1a3c380df20208c0ba", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1468977678205127126100738048" - }, - { - "id": "48ce4baf185228ca3c595e1312d47414a03f2c9378bbcbd9d2484c366fe64598", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1209962936966697732800512000" - }, - { - "id": "8d0de74a77998ccc75d46f9a88739b602a4f68b2344050bfb85b1ad554a64d85", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1038453027624943467768053760" - }, - { - "id": "28a8bdf9872f6220093f838340faf548530c138341ed1fb95f1044678d9a4d85", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1846453772241295881239789568" - }, - { - "id": "9d1ceeea5a1f087f9c08c5979a4287a4cd7304951e225a764b3378bc88108763", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055466505709732700927033344" - }, - { - "id": "69bf11f6ed129e8a7bba0af237c3fec7026254d08388dac089ccca8394fda945", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1030520111991616188235841536" - }, - { - "id": "c5bcb472ad21ac3e375dff733e5d0bc33664beb58a22fa6b29877f372e4c9699", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "3e1713e50bed28e5cf1b96f792c11c9b54d83c5564ca606f689ef9989bf9a7287aaa3ddadc08", - "value": "1002239772633890811951874048" - }, - { - "id": "3f85e79b2ec7bc40462f167484a5536f1a093d751dbaba09fa5747fe48fb3829", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "c6e0c60f258750af1b9877524b3616df0f19ac61643965525b7d4ede07f4e518dc75d0e6dbad", - "value": "1041185654481120013024919552" - }, - { - "id": "1b8e155b7e5a353f58b2a61ed8150684a77faba1efb9b25ed48dea77e93c87a3", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1083075028716419309310509056" - }, - { - "id": "10ef25533f9c880c00949a66eb0eaac71f2ef6c469d4055a9098b220529fe3c6", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1083366215273505441388691456" - }, - { - "id": "40d4a770e9ad64fb3ab4eff56db7aa8b2c0d99363325c74a006f19909cb7c7a0", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1032736164739575495349370880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218230, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "146400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "nzO0EXhZ6XDuZ4J+M7HAAct2xP83T8yzvFTUltV5UiU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1394997422975988850498273280", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "1296320147188445587744227328", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1214174296428594389008252928", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1208386520867796682739417088", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1154904029639518339158507520", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1258544840837951329652178944", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1144058486649457906305466368", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1258355609587191900096430080", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3660127502763621877096120320", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1035520832484468027973173248", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17526156331110210435863805952", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1031928216686325989526994944", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11288265182982731734464856064", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1016228342268634806519595008", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2731826231198176090764869632", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1237551893065452631636312064", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1402201692444809203046940672", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "7621183484151434266147815424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1014906893210285142812098560", - "unlockhash": "0e02d3e36d04d048dd03cf8e9876ec642a1e8fb593a6bfe7ce0a83b2e28a36e86244ea4ba22b" - }, - { - "value": "1120557114230450523536293888", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1136740932795362763861131264", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1016347292465788967729741824", - "unlockhash": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1" - }, - { - "value": "1134682698506825670777110528", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059977942073144864597606400", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1162702543665513423725920256", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1168135268749220554134126592", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1032676690325578696482422784", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1382710902006190457642549248", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1011235862285533693416439808", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1043221037219990736080502784", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1810576946164646427569946624", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1892240497286497748427735040", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1751512608480153109499215872", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1144903014783513070779498496", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1222870092121443418196934656", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1452706968546465892345577472", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1026114884456072117023932416", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1181449042092676182748168192", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1503323405259687424920911872", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["200400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9SFIXDJDS2+dhIVKx+RZSEUMFuv1SK+qV80iM41eTMUVN9TV4eQwSKiMgxc0+pbPGrCQj/qvKgvgA3CtYWiaDw==" - } - ] - }, - "transactionid": "9765f5a2a423d4cee5ef747a093f724af19013b0842ffa107c5e178fe8ffc7d1", - "confirmationheight": 218089, - "confirmationtimestamp": 1564459919, - "inputs": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "fdf93737e486aea1bde01457128b6e10b1d5c14ec3d02a866caf8275404e6177d34b74fc7ecb", - "value": "84750524100055850934551101440" - } - ], - "outputs": [ - { - "id": "1e9aeb56b337b8ab8520f7426fac0861af7667adb7bdb00ad57c3ba8b1d8fb3f", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1394997422975988850498273280" - }, - { - "id": "69e60d5557dce0ad5877d960d063f4041c5508c03bb4b08231adf8acb9208a47", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1296320147188445587744227328" - }, - { - "id": "c8ca60a120e88847d3e0fcf75525f50398e7439f166ec0db2b9c28990052b494", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1214174296428594389008252928" - }, - { - "id": "a5fb63b0880c66ff52513053bbb3e61186a1391c72e97ff484a5d616b7dc3e5c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1208386520867796682739417088" - }, - { - "id": "af57316ebda019853d27cd32697b874af64d9bd6582be17650002e2c53eb90d2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1154904029639518339158507520" - }, - { - "id": "14585155df62411856bc26065ca374e7704221d7a74f1ec9230fd556a3a86e07", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1258544840837951329652178944" - }, - { - "id": "a743d76b2b06efadf23249f735c2e2c993c8671292db7722f5ace9351c0e2f03", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1144058486649457906305466368" - }, - { - "id": "d3a492de376163ec6b08d54958a44bfc1c9f9b71c7bbe93b4acd8f60b14bfc1f", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1258355609587191900096430080" - }, - { - "id": "3467da55351b202b4489737bbcd65d9a4144d4e424aa2893711b00a81883588c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3660127502763621877096120320" - }, - { - "id": "18786b566347b94832d1316a78041b253d7a3e421481fba269c1d24c294839a7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1035520832484468027973173248" - }, - { - "id": "30dab16fef84e91efc9dafc9c77cfcc468455013a3d78487688e076bcae881e4", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17526156331110210435863805952" - }, - { - "id": "1d66c016f5d44fd20b297a861cfe6c6c76dd6d32802788e15b463f4b871f9182", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1031928216686325989526994944" - }, - { - "id": "158dd7c422b125b99d8e66deca894bdc8842cc038eb6ecee677ef17c4198e3e4", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11288265182982731734464856064" - }, - { - "id": "3c37589c8c48151eeb9047d085af3495bb5de5ac7f33e9640edab120eb1d0a25", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1016228342268634806519595008" - }, - { - "id": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2731826231198176090764869632" - }, - { - "id": "44e9dee17a457217f9be202ccb776a509dc798e7cbc652575d3dff638e0e6281", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1237551893065452631636312064" - }, - { - "id": "0c88084e883194807ca4c6a707b8247431fbbd938cb31e7ac5579d59da18e09e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1402201692444809203046940672" - }, - { - "id": "d1cc57527f074d4e068f3195ddb07c23a788713fd1ef358f28ce4497c60de1b2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "7621183484151434266147815424" - }, - { - "id": "5ff069ed41f7f53d4b2b12eb05df617ecc2d674477be2e03ae79db2823741d2e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0e02d3e36d04d048dd03cf8e9876ec642a1e8fb593a6bfe7ce0a83b2e28a36e86244ea4ba22b", - "value": "1014906893210285142812098560" - }, - { - "id": "7de59d3a066fe2eefb313b963e9c5743aa96210c1b77f453d90426bc8226b5a2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1120557114230450523536293888" - }, - { - "id": "7f5ac38be58b35f750fee49e31ee623e42098c2929a0bd22105a3c55e5e460cc", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1136740932795362763861131264" - }, - { - "id": "5802a466f639f3d387236075edd9dc8eaacd657cc93ae9d512fa12f957d61c65", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1", - "value": "1016347292465788967729741824" - }, - { - "id": "e6ab1f5d9b191a7825b84cd1c657d9fea3f72e36b337625c1e13c8b53a342738", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1134682698506825670777110528" - }, - { - "id": "a1db31e007710eb3c365a0aacd84cd5530cf35e25b2f44f21201084599c33238", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1059977942073144864597606400" - }, - { - "id": "c56dd0b6d17f0bd7c2cfcd1926fb726bab418dec277cc730d7a6cd0a9252d8e6", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1162702543665513423725920256" - }, - { - "id": "bf5b18838bf24e11472b6dbbb61ebaae9dcd8f3b0cdf2ee8d16abe821309ca68", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1168135268749220554134126592" - }, - { - "id": "5f7628277739cb327745db0e86fa796cd7a08fa6e66f6599cab04bd430c31400", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1032676690325578696482422784" - }, - { - "id": "65cec774b58923f1eec4ad14c9829812ee884198a5dd9d0c9039ec4d44b9d0e1", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1382710902006190457642549248" - }, - { - "id": "bacf175f36e24b27a32ecb3f4417412ed5713f9e04bd6091171aaf3631f03bed", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1011235862285533693416439808" - }, - { - "id": "386c9ce1d7000ce113331879da3eb076210350279501766357cb37a32ef2cdf8", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1043221037219990736080502784" - }, - { - "id": "ebd44eeab80d6ea1d83e18eeb83229acee56690c36915927c1055f52ebdfd89e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1810576946164646427569946624" - }, - { - "id": "e7b0c2e3b5da52678711a070922a6acf405f0176bf74686ef7b178a55a5b51e7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1892240497286497748427735040" - }, - { - "id": "4be02f77b5cbbec4af1dbc67891f553cd1c3a448ea5353465c6c23ee8c046b66", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1751512608480153109499215872" - }, - { - "id": "4b6e1e81f076cc74bd0a63e7bc129bc494609a7e8b796f706fb10b1113272f9c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1144903014783513070779498496" - }, - { - "id": "4685180d414c638b285ff41fbd211394f6de3da034cee6b95fac7548dfa76d4e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1222870092121443418196934656" - }, - { - "id": "598a59ccd9322f13d74c8b163cd99a4cf780631a6095a6b3da477e61511c52c6", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1452706968546465892345577472" - }, - { - "id": "0a470dc4dde308cc48be68fd0e2fc76ecd5f873d1b4496ebb1b5351859cecb7b", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1026114884456072117023932416" - }, - { - "id": "e6421e432652ae8fe33b670581f25d4361667c5655bac78d1070d43a03368eb7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1181449042092676182748168192" - }, - { - "id": "18624e951a1b320136baae8239f34ef94940c840199ae198123173bac854fb56", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1503323405259687424920911872" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218233, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "200400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Paij5Czu2FEzoOTPXMuAhhmenTmcOsVvoFvMlPtxMKY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1053653289732850454829465600", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1163421456674727670696640512", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1132184958995360971083743232", - "unlockhash": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf" - }, - { - "value": "1909125198039245632474972160", - "unlockhash": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094" - }, - { - "value": "1285994062580140428905938944", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "2193588060379378441621864448", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3960342574964867721815130112", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1064564579166381904188014592", - "unlockhash": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2" - }, - { - "value": "1083385206698218890068361216", - "unlockhash": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0" - }, - { - "value": "3884147499619739159303815168", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1010597182087427283571179520", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1079180843843476592495427584", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1313138296890198250125000704", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3806717705803300059784151040", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1077572186302155474329927680", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1487309907286771540080197632", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1097360787761822888456355840", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1047309317557820682015866880", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17883053826573196464100474880", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11210920433418904800723992576", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1067477287944999206092013568", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2848857595274758581309669376", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1241796698615765600779108352", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1384213755580319413817049088", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9379669096233368808299954176", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1220448698488860394024075264", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1011960496762286107730640896", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1016441565810593952398426112", - "unlockhash": "f20af5d03a5dad850bbde5496099b2464baa3e5278599f0002d37e091271a6ce32c6331f5a82" - }, - { - "value": "1182473396066795432086601728", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1238049750274728493792100352", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1060417713073136983589421056", - "unlockhash": "85efb7029d3597911e93cd449d3d8662adea9f7b3ee0c891f4e3fc95682acf4b84da20db2140" - }, - { - "value": "1277534897630390871954292736", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1071728405427355378237440000", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1966813265020078605775929344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1085062182044538873971736576", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1074491499272127440242278400", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "1261469461290651884849725440", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1089051178163842957850181632", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1044910802351034860485738496", - "unlockhash": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0" - }, - { - "value": "1013762657131118008745852928", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1066712976118769466476331008", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1053900750332928045607419904", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1160847069069425633755004928", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["214800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CQEh/Gg7Ll84GU2PRil/g0mr135L5Plfl+SSqX2EhtuUUCVHOzb34jH+XzrpIYZdfTUsQh9llCKvCUNi4iLvBg==" - } - ] - }, - "transactionid": "19ab852996543f6776fd5e4a1d9538c7663874bbe4855161546ddca1476a225e", - "confirmationheight": 218097, - "confirmationtimestamp": 1564464957, - "inputs": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "3e7cfa0028762178b3c03798d9a51cc0a9eabf55d5a5d08b7e61ac79c320628563fcfe55dd57", - "value": "96561873372353860312541511680" - } - ], - "outputs": [ - { - "id": "8288baea3cf4c9f00386e53fe9537151d6b2d4525892baf02e4020c9d3aee32e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1053653289732850454829465600" - }, - { - "id": "46d53251280758917afc8054b5e9c6b7729c7f02cefb16e6636c3316e16a2ee8", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1163421456674727670696640512" - }, - { - "id": "3534ca20f744539cdd3e6bb556e49831d4bb0597a7b442334b5f95ddb41bffc7", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf", - "value": "1132184958995360971083743232" - }, - { - "id": "6f0826b4b63548273008b047f7c5c2c3304eebe24edcb0ef44312f3372f2f817", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094", - "value": "1909125198039245632474972160" - }, - { - "id": "1a466da43cae4ac718460fd486947f594b6bb5dc27810894ab04936642242cbc", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1285994062580140428905938944" - }, - { - "id": "6e49e74eae1ca183d493461a3887eb47205156d3741eaa1b93b0a7fce640ace2", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2193588060379378441621864448" - }, - { - "id": "2ae40a02dda57483bc20d5dddc868a1d9c9beaebe3b1016dc2c07c6cd958e3e1", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3960342574964867721815130112" - }, - { - "id": "c5075cd91bd6960162c57139fd91df31eb79f263d789e934d08b3529adf419f3", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2", - "value": "1064564579166381904188014592" - }, - { - "id": "b1dedea4cb517e38f2f8a528651a25e750fcaa87a855411abe0be9bddcd573f0", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0", - "value": "1083385206698218890068361216" - }, - { - "id": "f26084d6aabd320a65214fb10b0d1cee02c57292e38c4e04e9eb63fe9664fafb", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3884147499619739159303815168" - }, - { - "id": "36caca0d73b001bd4f0e261b100b753b38833c85902d7ac95245051283498018", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1010597182087427283571179520" - }, - { - "id": "22588969443cb9c07591444c536ebb7bfa645e0b1dbf8e1c43c1ed9239c62d58", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1079180843843476592495427584" - }, - { - "id": "15f03779f88a5852931bd56b28abc9146164917e837e17d49a9fe5aa9ad0e747", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1313138296890198250125000704" - }, - { - "id": "7378d8236fa22533ee6d34df73691d1462d18459aa3f6adc90ff2ff21421092b", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3806717705803300059784151040" - }, - { - "id": "eaf83c61aef3fdae2618f696b65ae0eeba15354d45b6e755ee58f8e334fcb2dc", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1077572186302155474329927680" - }, - { - "id": "116ddc3daefa5444d034aa37e7f4456fb399cebaab2560a4f2de609bc8ec837e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1487309907286771540080197632" - }, - { - "id": "6d6d0ca20b3de1cd090c43f67472b14ffeb58fb0fd6879d0ba54805b38ab4648", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1097360787761822888456355840" - }, - { - "id": "cb9b1f12d6d9d9678157ef7daf63bf09b0953be171ac18032ecc0f3f9a5e9cd9", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1047309317557820682015866880" - }, - { - "id": "a4bea7d80d879b7cc0ee47791227769b8f3fb9455fb2dbcadaf11896d581387c", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17883053826573196464100474880" - }, - { - "id": "e86ae5f30a376e11df16648bc65bb43904201fc735a4a9cee6ffc16bfa85ccad", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11210920433418904800723992576" - }, - { - "id": "623d344d2dba2b156bcaf6e95a7e94b04fc62a1ad048a169e1490655ba675bcf", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1067477287944999206092013568" - }, - { - "id": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2848857595274758581309669376" - }, - { - "id": "b9081621f924971ed607acf41c860a138b7d300f7731b7f3aa1948ed8b064692", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1241796698615765600779108352" - }, - { - "id": "ecdfa3525599e797eef70e47182547196773bc18853b382ef0cee0eb22e23ea9", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1384213755580319413817049088" - }, - { - "id": "fffc9a5d28125489a26d6a6658b631f4d4353abe3bc10bdf421d95d124efbe38", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9379669096233368808299954176" - }, - { - "id": "0ee185b7b72fda9ce319fc3517ec4bd180af00be1e95ae26a4c24e2fe6296044", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1220448698488860394024075264" - }, - { - "id": "6b1a8655deb250ca99e13371cc9e54921785afe0c96f0ee994f3d7064dc8a907", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1011960496762286107730640896" - }, - { - "id": "08dfa6771270bedc0cee64bb467c62e522fd682e9039e5b239e9867bcd5a842e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f20af5d03a5dad850bbde5496099b2464baa3e5278599f0002d37e091271a6ce32c6331f5a82", - "value": "1016441565810593952398426112" - }, - { - "id": "e5735dc2da3e6d2bd8eb4c0d2f26abe325b2f25729e699e6728f254fd1def3e6", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1182473396066795432086601728" - }, - { - "id": "f4401becb8aef7f051131c019806d2f6ae2f1d0a39815b7f6522dd2f79b4b56d", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1238049750274728493792100352" - }, - { - "id": "0830a19fd44247fe90a9f3232bc720e49b0a6209082e56043b35550fdff0062a", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "85efb7029d3597911e93cd449d3d8662adea9f7b3ee0c891f4e3fc95682acf4b84da20db2140", - "value": "1060417713073136983589421056" - }, - { - "id": "3cbf4162c162cc56ecbc1df36f26b14766c16e58da1128f68c528d837aa42603", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1277534897630390871954292736" - }, - { - "id": "db22db5ddee169ad9aa8b495b0b6a7023289d640f305fe14bbe346b3fe1a2735", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1071728405427355378237440000" - }, - { - "id": "ef4f3d99494f406e35b7724df7136842c9ff430a74008f18b63e66e283289e77", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1966813265020078605775929344" - }, - { - "id": "3f64c4524c64d04f7a46186ab5329d9c75a8dfb8e102c4e750c543626853ac5a", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1085062182044538873971736576" - }, - { - "id": "b8af276dd2936fbdb07b0dc6db1624cefdd5528d1d9ad55910729ccbba0130d7", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1074491499272127440242278400" - }, - { - "id": "98a209d34ff62fb9f3d68bf6db094837bcc66711befdf09dfa0d8f5496b6b7e0", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1261469461290651884849725440" - }, - { - "id": "a6fe5d57409e79fef37d7d4be616bffb933190ce796f55c804cc5bb1eea7e032", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1089051178163842957850181632" - }, - { - "id": "6a9be10994d1d54c3138e502eb0f84a865a0bee08d11b7020d44f018a7b66591", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0", - "value": "1044910802351034860485738496" - }, - { - "id": "bb2459df64d33a34de6be57cfe59501ae9398a412fc1ad4896163bdd62f13c09", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1013762657131118008745852928" - }, - { - "id": "567e5db1aed3162bcbc0cb7807606ffaf3284bdff58fc6ba0b3d9f2957602fde", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1066712976118769466476331008" - }, - { - "id": "762de0fd84fcf203e8d972d7268b622bb010408940b0b7ab40fa77e5ad384eb4", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1053900750332928045607419904" - }, - { - "id": "4edc3f998e8b23798549c4eac01500bd14b263f07d63a983b6eed945c37d4812", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1160847069069425633755004928" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218241, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "214800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "ksV2EwRQgytqU6FgM0BdHcKPUVjAXN2GFLDVFH0gqEo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1125293805200215868818063360", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1178514086777621629458448384", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1003330564340584038393577472", - "unlockhash": "1d0692bbb0495151507e66340fcd4b9094a7a0f4f6042269b4eba4819ff0805135a99b4c78e8" - }, - { - "value": "1452318666109239606405758976", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1096963042255024259019571200", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1041543692753936588023332864", - "unlockhash": "e73c761fef8702fce8106af7b0eb8a7c38a68781c9197317e8b4e695c64b5300285fa73e7f7e" - }, - { - "value": "1160529066231580295671316480", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1087437932085650112505708544", - "unlockhash": "4d5a77670aa7e54e5ce1f690a00511293742d247330e5a4bc2821d896750edaacf67caf428e7" - }, - { - "value": "1100266406552682689645117440", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "1170219435832517740508217344", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1166018034519327067793522688", - "unlockhash": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f" - }, - { - "value": "1073550919133829118722834432", - "unlockhash": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c" - }, - { - "value": "1114780262425880431500460032", - "unlockhash": "b17b7f5fc1bc6479911b45fffb266c63761521145a5220d51c7faf386b88870ba0cbb6c6921b" - }, - { - "value": "40855785933312089836404867072", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "2650160611674334196043612160", - "unlockhash": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290" - }, - { - "value": "4871016871074301795035512832", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1203933584668283496877260800", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1819214773018404534760767488", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1641842349566896916874133504", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1322079386474195051199070208", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1129176440628405934745452544", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1117446659984056199157563392", - "unlockhash": "36ad9ce3c351f18f597530bcabea593b0675627e838b46586e97823cb69ac964a9c870716555" - }, - { - "value": "1137423743732350276845174784", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1197904563543574987365416960", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3191326875194549433716965376", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1279472631979190808759762944", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2117374278120490115933405184", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1058818407524237279397019648", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "3637416569346014119242760192", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1152877277840411293233709056", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1219168114364233611480137728", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1071086137446966293766602752", - "unlockhash": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375" - }, - { - "value": "3804035395671904221050961920", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1004254699681774118516162560", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1161540346701811449452822528", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1027927776105898159347793920", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1170706914241447696095248384", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1257105812409336759872126976", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3688838324432342068244774912", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1010711582839755035614642176", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17328078651235867464170471424", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "2025029856077539312998023168", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "10588837272891638120970190848", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1057501177062066602345758720", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2762258971256558438601195520", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1175266673484588113698226176", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1375283480542343670045605888", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9169701750106184273637670912", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1278974525784216641211465728", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1046502161676014812966944768", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Ppff2JKIeoRmcd0Uyuwyszqh/V6NsksWlp+AuvldePj5FdhcMalf94Izz1bU9l5jE7+DnuJBFyIbx3ShrTzKDQ==" - } - ] - }, - "transactionid": "6033584c6f7df7d7c923953f10a5ac458b9aee8266702ca2c3556b3a26dca64f", - "confirmationheight": 218103, - "confirmationtimestamp": 1564468388, - "inputs": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "fc992f4e5cb3c1df341692d454e7f788625ea52a8c8bf4cc47f72bb623bd49563bb0eb82ace9", - "value": "150377086495912362586145210368" - } - ], - "outputs": [ - { - "id": "6f69f1ef02eb3a98347b66c2f2c7e035c0fb42885b9c8066e46987042eb5b0bd", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1125293805200215868818063360" - }, - { - "id": "1fa8b3cbfad6ee86a9a2979bbd9311245212e6978b8182557af3d150a84fd30b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1178514086777621629458448384" - }, - { - "id": "2d540aa3890ee80e8629d598f045920b56692c2703d4f51c9d8f4ddc5756ade7", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1d0692bbb0495151507e66340fcd4b9094a7a0f4f6042269b4eba4819ff0805135a99b4c78e8", - "value": "1003330564340584038393577472" - }, - { - "id": "a0dbd4c15f326944c20ad1b4670833b71f0d349192a198f7910a1dd8862bb441", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1452318666109239606405758976" - }, - { - "id": "2cd1d9cf1c6e5cd704db3178b081c66e5973f13da5742907da022c4723818590", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1096963042255024259019571200" - }, - { - "id": "52321b9271d261f290c2396db6e5255396a01b45cc4c615345d723144fa74a5d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "e73c761fef8702fce8106af7b0eb8a7c38a68781c9197317e8b4e695c64b5300285fa73e7f7e", - "value": "1041543692753936588023332864" - }, - { - "id": "7d54698ca159a016abf5c2687beb0735b8d3fba6404267edfecdd37f154e4dda", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1160529066231580295671316480" - }, - { - "id": "f95e87a6978c8cba55ff3b5fc3ce4bad621dbf043f1bcbbcf148b5010d273215", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "4d5a77670aa7e54e5ce1f690a00511293742d247330e5a4bc2821d896750edaacf67caf428e7", - "value": "1087437932085650112505708544" - }, - { - "id": "566c3588765349f5610e5e165f0e3fe4796ef17dd935a5e6bb990da176f3b2d1", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1100266406552682689645117440" - }, - { - "id": "87dd6bf57200555608853a0fbb4fe59b4d51211c49798da53fb52a1555825d01", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1170219435832517740508217344" - }, - { - "id": "6809d704a5b092484f174066d678783747fa545c63d1656662c6feeb52085f9c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f", - "value": "1166018034519327067793522688" - }, - { - "id": "a13b5f1bde91a19b4cae3b00897258c3061f21ab042a03768266949101a62fa9", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c", - "value": "1073550919133829118722834432" - }, - { - "id": "147f12412fef7c346c9e6140002d33a72ce2c8d02380bed7838ef388e3f4b828", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b17b7f5fc1bc6479911b45fffb266c63761521145a5220d51c7faf386b88870ba0cbb6c6921b", - "value": "1114780262425880431500460032" - }, - { - "id": "fbeb74b10f5869ebcd4e553990a68632611dd4fd779622cacf87253f0af48156", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "40855785933312089836404867072" - }, - { - "id": "651608258425c53deeedfce449ccc89f337925cdb81836ac20299392662e0676", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290", - "value": "2650160611674334196043612160" - }, - { - "id": "e09bb0cb4d3a46b29d86b9021ce1f2553a260fead99656ba55baa788c49d45a8", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4871016871074301795035512832" - }, - { - "id": "e9d8ac2d7c7b878ae3941cc3d247f3175f3fad0c304c86b7a8c3aa270b24a9ce", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1203933584668283496877260800" - }, - { - "id": "45e79d82f388411c8b06462e6c863893eae3c22bc8705c979522aab6b7e429d2", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1819214773018404534760767488" - }, - { - "id": "30a43e5292b1df9ed25e5a0c562edee4778f70cb89aac7c69a743e19f715b260", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1641842349566896916874133504" - }, - { - "id": "03c5b932bb97e5dab60760506b1b897bfe44e8c661d3d10e89472bb621790c82", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1322079386474195051199070208" - }, - { - "id": "ed025d994fa7eb09c1518f77779a41879c4235d921817500ce4aeeafa968389c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1129176440628405934745452544" - }, - { - "id": "529c59c573cf32780eb239ae44e1bc5eb994619b2dce770d182c099fbb0e8ae9", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "36ad9ce3c351f18f597530bcabea593b0675627e838b46586e97823cb69ac964a9c870716555", - "value": "1117446659984056199157563392" - }, - { - "id": "e241f1ff79e93aea2fea2768cc0718138a21e0f97c99776514a037d33a0e6f75", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1137423743732350276845174784" - }, - { - "id": "7da9786470ce3e6953661b010e36126602ce8cab0076a3b2e9ba1065cbd35375", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1197904563543574987365416960" - }, - { - "id": "ca4b3af90fb38e915fefeec715a4dbb374d12152d83db68861b98af66a01cb17", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3191326875194549433716965376" - }, - { - "id": "50ed9358ab0f2eb43dbe725bf3714828220ffd830bc7347888d0f016b5064c0f", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1279472631979190808759762944" - }, - { - "id": "ae221126238034ba91864382d9b5c200a5f37c3c3d45d712464bdc767e80bfde", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2117374278120490115933405184" - }, - { - "id": "5d90f20ed881a823cdd0153c75343c426c3ae302e2bcb3dd8be665e7ef8a779c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1058818407524237279397019648" - }, - { - "id": "fd965d24c23816e27c94055204c16c3249f6bd3529482e1bf47fb9f8166df636", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3637416569346014119242760192" - }, - { - "id": "25249b19e679aecb5bfbb00b1d701eac7b12c472026653f8b72e08416bcf599a", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1152877277840411293233709056" - }, - { - "id": "98f9e5dd542b962ab0ae65b80518a406fee31b7f8ed30dd93415075e84dd5160", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1219168114364233611480137728" - }, - { - "id": "9099a875f01e90ff1bf5634ee3a681da62f8931d277d7fd79762ea1c9f9dc896", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375", - "value": "1071086137446966293766602752" - }, - { - "id": "30b4a79ae9af4a9342b2179d5a95811c27fc97a98616cc2c932ea4fa7240cb4b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3804035395671904221050961920" - }, - { - "id": "90c6251a15d899c14a43f93d36ea801da3f073798d263d412a51a6d7bd0ec82d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1004254699681774118516162560" - }, - { - "id": "cac87416f3eff3db68c9db366000afba6fc63d0d500508a3fbb0b2e9aacb26a8", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1161540346701811449452822528" - }, - { - "id": "94b82616ac550be03d66788655ada5b1c33664dd769350693dbdd1ed3f82e615", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1027927776105898159347793920" - }, - { - "id": "ae28fbacdfac8d1095e4e7fdb9be81b01af1d61b2aff67720082b7d365554475", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1170706914241447696095248384" - }, - { - "id": "1e3eff0162e26916f8706a4895d9f2725f5ebd69105a7f6ec341afa7cf7a808d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1257105812409336759872126976" - }, - { - "id": "029b592a7a7f8ca92de81f11229daf954ef043180e04d7c758f07ae23b4b0856", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3688838324432342068244774912" - }, - { - "id": "a6fc31247bbf799e213ab3007849a6bd772d4c260b845a1024761bbac2d90b97", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1010711582839755035614642176" - }, - { - "id": "6b3ca9bf723549e40ab489810bc50a1b6162eaefdf34eeb26ab9d0255747f03e", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17328078651235867464170471424" - }, - { - "id": "ae960f7febb9729d8ec86031482727ba610e552a88b4e1cc9a158e4c6b82366b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "2025029856077539312998023168" - }, - { - "id": "2997581b6ef93fbf28fb499b5ce017c7cd84b0392e74fcda667361cdd32d1865", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10588837272891638120970190848" - }, - { - "id": "76c56a5c9cf4016e104612c2a1096eaccbc3023989f81f71ca9d01b6a0b35b45", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1057501177062066602345758720" - }, - { - "id": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762258971256558438601195520" - }, - { - "id": "c21b92cd53ac9e1303e84893611102285c4796b9fc27c8d4975864863a279657", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1175266673484588113698226176" - }, - { - "id": "97df2d6a1e4ae09ca63945021be7a3d367a1937b03b168064235957dc674362a", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1375283480542343670045605888" - }, - { - "id": "4db482c63bc2eb6b19b676c52317b38826e65525652cd80bd492fd8a0648005f", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9169701750106184273637670912" - }, - { - "id": "b85eab1033ca0992793842a030bc68b50741dbca344b388cdce86cf34ca04bfe", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1278974525784216641211465728" - }, - { - "id": "13e2e8cf227867981076e6e0c917b5fb992806b375b0edeb39b65835a882b6c1", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1046502161676014812966944768" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218247, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "GuTmX2H027bxvTVoqyzbZh4Y4AZr8abPyZofLqiUiRs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1159076386314088845378846720", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1109640650410846269521002496", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1234650922403788822531801088", - "unlockhash": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff" - }, - { - "value": "1304641723097514452692500480", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "2155724077969629536619331584", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3879587576253395868384755712", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1445182666690065027033989120", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "1225770190155112363818221568", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1098822022183038777909313536", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "1063160635705645945760382976", - "unlockhash": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1" - }, - { - "value": "3760772383449422819099672576", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1094435822049708065624948736", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1297192643149305938890981376", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3621871505808503642601291776", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1004816349955352846456061952", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17911892887019770216204730368", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1018780856035699078205538304", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1312280354009038066622136320", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "11130912057198966888946728960", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1047093550294369558413180928", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2837128019724415612865216512", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1214315546631983519955419136", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1401316863149207904403324928", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9611692290037201706520936448", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1040924024799886582531096576", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "1053866460505388990578032640", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "1092315866462351835873411072", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1108186192047690304349077504", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1046980793036858451450658816", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1028678871265872738169389056", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1136478408635461648273899520", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1010550551986605478615023616", - "unlockhash": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a" - }, - { - "value": "1022113098655178177592164352", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1119230284132663892781301760", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1093030830747186253006110720", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1120134554899899471086092288", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1204613899364433678251851776", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1011731867599239939913121792", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1016966898579064680600698880", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1279360265392815701642706944", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1025577198013328202709860352", - "unlockhash": "471beb9f8cd514f8fd088899220caba37818091b4c689f17a2ff6a2519d85cde58b5df5e3e9e" - }, - { - "value": "1936822413870169218323841024", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1062742818869332565269938176", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1037088460165765120425984000", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1096007618187597456008675328", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1104655831089865314851356672", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1025225177488788976480485376", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["229200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TQztY+Ttc+KZGM6sHacG9lc7/PF+yVEy2mW5/o/imwlB79IFNwl1JQVXV7WCRuTwoktehS/5r2pRTvRtqUnHAg==" - } - ] - }, - "transactionid": "71736ced4b3ca6c9abb94c2d8367e2ad11a300b3c5cc68ad1b10be1965239c85", - "confirmationheight": 218108, - "confirmationtimestamp": 1564471925, - "inputs": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "0a815f8151fd94f4099b17138fa94ed79f898a8dca401961e9745f9babd0dc8798b5f10b09b3", - "value": "99614269565491516453245091840" - } - ], - "outputs": [ - { - "id": "740a5f861cd68ff89c2af995a6ec84af5cb0092cab3d296334e35865b9e90a27", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1159076386314088845378846720" - }, - { - "id": "e6cda9f3635c7d1341645f41e62d8d3b0e108694e6745b9630618f0feb20cce0", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1109640650410846269521002496" - }, - { - "id": "5a5667831a9e0f84852e1a67cbb65c4ef67e054d531d4905de21fb731d8c4096", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff", - "value": "1234650922403788822531801088" - }, - { - "id": "f95165eae2595d0119abf50cbaeaa7b0856190fa7ba0bded3b00a6c218b1cd92", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1304641723097514452692500480" - }, - { - "id": "0c8210ec1069ee076818fb29742c4f5b0a660f5d5e099b00be06e457c12f84d6", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2155724077969629536619331584" - }, - { - "id": "34d8ed257f33b323c2b1d7736b2e6d7e32894c4a3d81b960aabfb607eec5a3ed", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3879587576253395868384755712" - }, - { - "id": "0e1b380c7d00cc5e244b7ba77f4e420e65184d691a2c2eb47772377707cbf135", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1445182666690065027033989120" - }, - { - "id": "3272b734b2dbce1a2f94fffdce18c66d16bb7d5fdc1be27bc08bc06f545d5778", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1225770190155112363818221568" - }, - { - "id": "635787b1c8a1a0bff5e25a72da740ceeab597f23476560e2115c3e395d6a8df6", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1098822022183038777909313536" - }, - { - "id": "fe4c550ce5a85671d7cd6f8885441af0e424c366e526275b2baf7da29c8cc54b", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1", - "value": "1063160635705645945760382976" - }, - { - "id": "6e5f258a6c0581b9c82589bfafbe4003e25e8c1c0cc0ebf3f49fe05e66ec3190", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3760772383449422819099672576" - }, - { - "id": "ae953d3debb6fb36bceb078b031fafa8e15b07f7c800c84fc483edbf5f5c03fb", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1094435822049708065624948736" - }, - { - "id": "55a87b4e25fdbf7e8c26bede4d8a4a7d155f99c0a1de199b3b964f787c537597", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1297192643149305938890981376" - }, - { - "id": "d32d543916e5852b917e6c4017a3c73b6cb472e3b0ee2d94da8d6f2412a6b416", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3621871505808503642601291776" - }, - { - "id": "77665517e5b1fef2c8b6bc1db59771c59d947ea9f39f0cd4d1225978f76893a3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1004816349955352846456061952" - }, - { - "id": "d857739cbc5bda435448424dff0027b2f35691b84941b383430fe64da3215a4e", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17911892887019770216204730368" - }, - { - "id": "10b7e408351c0561edd1c43d2f9882417c357ff1a13b1e8c2f2c34293aa73a5b", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1018780856035699078205538304" - }, - { - "id": "78f661de9812498aa9fe36bbbea1005afcd8eecc5509fcf733f00d128eedb169", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1312280354009038066622136320" - }, - { - "id": "aeda817c101099b5fcd504cf24979e5ef2d679600ab611f514fc0e794bd59718", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11130912057198966888946728960" - }, - { - "id": "40116d9b75733b4e5798dec2fbab2e4992661e02f2b78cd585f925d6dac25695", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1047093550294369558413180928" - }, - { - "id": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2837128019724415612865216512" - }, - { - "id": "fe657d15965d06848eb20d30f4f58fe1ff2e0ff9161984ab04264d3859d63840", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1214315546631983519955419136" - }, - { - "id": "69a2cc4f090ab99e57b943e2071875fdbf9e2065dc6166614340d3596fedbfbd", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1401316863149207904403324928" - }, - { - "id": "d6f368166e90f5da1cb650c8aed5a9633eccf64869c03b8edc7868de00785445", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9611692290037201706520936448" - }, - { - "id": "5e81d0043391da24527f59de299227bbff52257140e0797d41cec8db92d65138", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1040924024799886582531096576" - }, - { - "id": "95654c80bfb292cdc1f6c1f10172b6d400a4dd7a4d55b21081ce3ce0cec5a489", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1053866460505388990578032640" - }, - { - "id": "742f91c8cedeb76bf131a2c59e34d556dedccf85699e11030b4d108f27775fb8", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1092315866462351835873411072" - }, - { - "id": "a34edac79be3b43bbb8bc04d9b9a2503f9ba510e4f3f65140f56b98b866f0f86", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1108186192047690304349077504" - }, - { - "id": "68daf00ae24072bb4f992d50898a729a384deee13ddfbdda2b632ec7ecc18b22", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1046980793036858451450658816" - }, - { - "id": "496f74571125f528f31b20355707c9c43f71cb7bd4bab4d4448b816360a49cfc", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1028678871265872738169389056" - }, - { - "id": "a31a54ca09ddbfca31b1f0e62d0a7bf8be904bf2cbbf7ddf699e12e201eeaa85", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1136478408635461648273899520" - }, - { - "id": "a96b92d082d2cf9d259d11f87ce4153fa4e2996b96fc56a639df3ed03fa30ea2", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a", - "value": "1010550551986605478615023616" - }, - { - "id": "609b493265178a9c3bc9cb2ef9a6449f3a42596a27c14531f8e12168c2800f59", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1022113098655178177592164352" - }, - { - "id": "81993fd5305088921bd9cf3ec1b4b3ac7d03846d40ea0ae3281a7b1af6d1b729", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1119230284132663892781301760" - }, - { - "id": "f0947cae3008f07ffe3fefa6acfd380be1f788186d87c2b7ca8265cb502dd5e5", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1093030830747186253006110720" - }, - { - "id": "4a2c44f3764544dd68cceaf75119a6e5c4c8aed7008f64ce6df261627f3af8c3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1120134554899899471086092288" - }, - { - "id": "6cc0820b829f366991b78ef02bd5c522b2c9a3ea6a4bdf917cfc484db2d26c2a", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1204613899364433678251851776" - }, - { - "id": "9c8f93f83b55a74c007c4cc335e4f58449f3195fbc7359feaf93eb99f80c4512", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1011731867599239939913121792" - }, - { - "id": "7ba0bf994db51e772aa827580c44587b19ef2d6ab6bc9fc1f855a4ede7f289d3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1016966898579064680600698880" - }, - { - "id": "c53857dd25d972bebe44415110804d3b29d6257276053ecc2c62ceee16f72cef", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1279360265392815701642706944" - }, - { - "id": "12e8661525963d05fea9d7b7353372f31e55d742adfd8727b7f6bd43a5ad9774", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "471beb9f8cd514f8fd088899220caba37818091b4c689f17a2ff6a2519d85cde58b5df5e3e9e", - "value": "1025577198013328202709860352" - }, - { - "id": "1106f25fa9c881d0d96a97ceb8a3f8f405858902e68e94c3f78192f79dd68e4d", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1936822413870169218323841024" - }, - { - "id": "feb50400c9738113d2555fd8aa13cfeee9729195257fcc5dff994e9a4d4f2782", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1062742818869332565269938176" - }, - { - "id": "4cb62b4c939b61a37eb863501c99e3e089514eacef3baf0a2c55afa5684ea946", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1037088460165765120425984000" - }, - { - "id": "c0761bd5facd76dae6765d30761a9b8f39e1b6aff2b2dd3982f85fd029b158d1", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1096007618187597456008675328" - }, - { - "id": "aebc8a957745e78c29fb342242448c58397b67c094b1202f51c42723a24c4c6e", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1104655831089865314851356672" - }, - { - "id": "7d9a864873d642d3e870f271f60e40651f4fab323e7048525a8f1311de276389", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1025225177488788976480485376" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218252, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "229200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "b9rjw7yaD8h4dQDY1juwIPSeTJ1xSEgENMqU+T8BVmk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1430804042907539157733605376", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1112140701033866522252017664", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1198277321289125511088308224", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1031951127465267498727243776", - "unlockhash": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc" - }, - { - "value": "44438688546134069948589277184", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5258368634024617148023832576", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1251989211994357062067814400", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1042714198295885929949167616", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1218823023736843399116881920", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1049380946940951811946315776", - "unlockhash": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba" - }, - { - "value": "1871624920703732155336884224", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1597504427460100368253321216", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1062170511957143763172720640", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3423343101303320529562763264", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2183083500453917374153752576", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1028190533004865042242338816", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4102072721239662892551241728", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1417708242733933191751532544", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1299110814012186662442893312", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "3928416482675036271591555072", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1038724165800481886489214976", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1394121005744741854218289152", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3908891025248104991902662656", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1159288462927028134292750336", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1461937193618965596817326080", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1105913206753479928592728064", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1079084423918189547895128064", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18592865078467267354379157504", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1081134662032379474729762816", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1097115676460622377637838848", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "11823667085943209972390166528", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1088314469480938592578568192", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2988507563824936148835237888", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1032564365264044623286173696", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1283433300534659956869169152", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1435787491066272301092700160", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9962939397343114023414005760", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1207354257223422533756780544", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1036240739360157068078252032", - "unlockhash": "fb9b561fd6499b1ba8ef520834d5b87b316a64725126f5deb34250b86c51821230551581074d" - }, - { - "value": "1084703826169873277138501632", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1020419990493471376870014976", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1177513498678580184370642944", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1461986176189940694939336704", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1009048755626514749537484800", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1006219627679122316468944896", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1079833642154070308940152832", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1914554245289358233239027712", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1880317357548108646914719744", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1919832490989768470459056128", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1091915030318964290569109504", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HkK+kkhnkA79bR6dAOuZom7ahoT1hAMUW9m2zDgfLa/pmx4LKfy8QE5suz2lSYYogC1kjv/GIkkq8vK55Jv1Bw==" - } - ] - }, - "transactionid": "b6e8a3b47c4a65632b29defccae1356726dced8e3d4612663b18b90954bb40bf", - "confirmationheight": 218110, - "confirmationtimestamp": 1564474593, - "inputs": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a46a9242cdf19722ef0ab98d4fb1b231f9830577ed4d001f5b01a4b3bf79a1f1106be38d1eff", - "value": "159370831221516211157256372224" - } - ], - "outputs": [ - { - "id": "63482259d6ecbddb991bd0ab8c30320cfec353416802ad249bbbfecadaeef05e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1430804042907539157733605376" - }, - { - "id": "17090d30bc35dd07ac412ffa2e11c15bad9c266c22e16f3094c9f7e9755ddb14", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1112140701033866522252017664" - }, - { - "id": "9a5f7d6b02bc9ebae6e3b079cd05bedac3e5fdedd0b963e8c9da783c7856d62c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1198277321289125511088308224" - }, - { - "id": "1cee8fbb2f6905bfc867d523ea00ec09c7fae8413ac1454614de7dc1aca5338e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc", - "value": "1031951127465267498727243776" - }, - { - "id": "4c70da6af58e06f420077bac8f28b2f0a320ed6fdeba8832da4ad767dbbb2842", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "44438688546134069948589277184" - }, - { - "id": "b0fb5fafd6a7ce2517ecb848df76bb920f92af2764bf85f4ea43de7faca92205", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5258368634024617148023832576" - }, - { - "id": "87d50de45f22edbf49f5d1109f76460b3193ae984ba2ad6dee83d7354639cb5a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1251989211994357062067814400" - }, - { - "id": "b25a446eb5bcd7cde81f474c39f13600e60220507f39e19941567ff9a01c465b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1042714198295885929949167616" - }, - { - "id": "65f47a7080a25c88f0b0516c2b187bdab9ad92181e04b3d0d5c16e35aceb36dd", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1218823023736843399116881920" - }, - { - "id": "3a05d082a6e086c89c2b5648b66dc400af6aa7315543b7cad7c26ccd81f441a8", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba", - "value": "1049380946940951811946315776" - }, - { - "id": "63d25f6e752aaf1e583837463443ef4381832b7a336a62873a523bbc06c5918c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1871624920703732155336884224" - }, - { - "id": "2148a748db369a4bde5b48bbd0c1660730a61b0bf959797f62b77bb884c5caba", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1597504427460100368253321216" - }, - { - "id": "cf6ba25beb8e6953e4fdeec9862ac244059e3a277122de7c51ae3548a8562584", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1062170511957143763172720640" - }, - { - "id": "7c2040662a6e76422a691a34a0752e400082ed60c6292a17113955a027bbf968", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3423343101303320529562763264" - }, - { - "id": "c8a41d5ffaf8456845539d254cd08cd235f51bf11c65817b191a12eae4474883", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2183083500453917374153752576" - }, - { - "id": "9672c8c7325c17f37509ccd0397f848d0d9bd3073a4597fc874064dbc6cc546a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1028190533004865042242338816" - }, - { - "id": "a916353807d23853555b0300e4f26c76e23048720fdd2c7b614ee319d0cab2c3", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4102072721239662892551241728" - }, - { - "id": "1da4feb00487fd82b786881954f2d966476f3f8f77422fd7d81fff827718876c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1417708242733933191751532544" - }, - { - "id": "15469404e107d9fe5663e5cf3d7748b3728115e371759ea2c3fca4c0564b7d49", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1299110814012186662442893312" - }, - { - "id": "21388a6c71999dc1f6ca239bf5072382d176a750e7b273a7af27a0fc813d3691", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3928416482675036271591555072" - }, - { - "id": "6ac4723daa3ec8e7339bc11b3b882258d9780959085bace54d5174f515f57ed0", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1038724165800481886489214976" - }, - { - "id": "4f07b668ad229672494d6b12c08fe26f14e280467736e480e463e61a73be1514", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1394121005744741854218289152" - }, - { - "id": "fff789ed2bb8975ce342c39f06781c45d79baf1b607294d42052bfec5ac6018c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3908891025248104991902662656" - }, - { - "id": "155db02af8ec34eeb3f1d075e849a07fa21d71428b25a267ed37e66d352a6c69", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1159288462927028134292750336" - }, - { - "id": "662128b7579019606eccc968a65b009834bbf8e2239cfdf27ea3a796f82723e1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1461937193618965596817326080" - }, - { - "id": "d0d2db246918a538109b1d4d51b712ae7cdec9f7bffdd78f9a5dcb4111365c3a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1105913206753479928592728064" - }, - { - "id": "4cbd532c4f8b0f084a60e00e7632f0623aa04865608e826cd2d3f704aef0941b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1079084423918189547895128064" - }, - { - "id": "26a185ce774c82b1703b56bd35922ed2e4ed099d09f5000df7abc31549a9ee72", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18592865078467267354379157504" - }, - { - "id": "932c9dd1e22490d45c30fc52ad66ca06a4419978105d40931748991f11d36fff", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1081134662032379474729762816" - }, - { - "id": "da0ed7e15533b0f66f19a9f741fc70b4a011ea7d022a4489ea4af0859419ed58", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1097115676460622377637838848" - }, - { - "id": "15c3cc8cb2f1849efe00445b08f99d923c89a4aeb8e232ced12b0f602c08aeb0", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11823667085943209972390166528" - }, - { - "id": "2041deee228215374bf966380af0d829ba008713aed5baca1f0096434f9e3209", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1088314469480938592578568192" - }, - { - "id": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988507563824936148835237888" - }, - { - "id": "6bffa1f0c701403df686d6f1b27972846d0bd5f5267cb6782dd73b00f3b28e2a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1032564365264044623286173696" - }, - { - "id": "41c17f53fce64945e513bb8fc503406b83a184b8aea599279703a01adc73bcdd", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1283433300534659956869169152" - }, - { - "id": "762c1bf4024f419c306ab067a1831001713ae147101a928700b6659d4ee46a70", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1435787491066272301092700160" - }, - { - "id": "6bc3e29fec5d4aa6209b965eb87c5e02635c10fab342a15d30b8acd10a45fbc8", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9962939397343114023414005760" - }, - { - "id": "8b9eb79c02e9d4f60e50b642f410c0fa572906f1c1a411af3944eaeedb19d34c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1207354257223422533756780544" - }, - { - "id": "a90ddbb519bf66cea57a98da49a9972a222279cfade7f500313c14ab28110bc7", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "fb9b561fd6499b1ba8ef520834d5b87b316a64725126f5deb34250b86c51821230551581074d", - "value": "1036240739360157068078252032" - }, - { - "id": "eb07538798e3371d4247bad88507f346fb943f530c4a02a1fc58cc19096221fa", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1084703826169873277138501632" - }, - { - "id": "8b3083961cf6c0fa60d5b6f3f351f0a606f574b9ef05d3a0f57f4dc0f4b544e5", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1020419990493471376870014976" - }, - { - "id": "c80a3af6107e9649970d569efec5067bbee84c190bb6bc9ca0693442f7dc74ae", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1177513498678580184370642944" - }, - { - "id": "b9067a0f2d33b5a47c3d3714ad12b83de7717aaab1fe6c4417c4813ca33dd086", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1461986176189940694939336704" - }, - { - "id": "bbe1e74394b22572dca8f745d14a981283c797a5fc6e2f7d00c537c51199049e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1009048755626514749537484800" - }, - { - "id": "b8be69d7051501b26a70bd91b8cf138eaa8c11c7bb5f5bd1c7ca213bcded0437", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1006219627679122316468944896" - }, - { - "id": "0b5b3c61bf8a5d942b4f709b35d5e8855c5cc6d50a15898a590c84467b4472f1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1079833642154070308940152832" - }, - { - "id": "51d3087011460d017dc9fc95bbc85ead23c9fec31ec98b2264b869dec32233da", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1914554245289358233239027712" - }, - { - "id": "f2535556ddeb89c831870da8ea112f2e47260807abec75c71d0cd0c97dd40fb1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1880317357548108646914719744" - }, - { - "id": "f0cdd71e136ac8d4fa4ce0aebf4494bd90ef4430836cb2023c49eb0b3b660eb4", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1919832490989768470459056128" - }, - { - "id": "4ac9e011dcc6e49c0ff2fdc0510ca26f560d36d82f018f08cd6d95e2f6ce487b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1091915030318964290569109504" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218254, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Cw1b4Uvq9xQsqX80Q0RgwORtGTtuyLrX/EO7M9DuDlc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1067103623415482546621251584", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "3606850898532315041009500160", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1200604817451498664286748672", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1142471210281919286378233856", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1280561008164527800120770560", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3689358102071416957335240704", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "17383949398346429862642712576", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11131753814571289675674157056", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1066051785935992670377738240", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2820108406750158796917571584", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1188218202438719110467551232", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1331191372656907899006615552", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9580365513576136952378294272", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1056958841228133199426027520", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1070725988217865189334188032", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1249866162163007899448115200", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1030515649900745852563226624", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1024714419819799909798395904", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1034191559435645461367422976", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1082528127038452761667043328", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1271744157946098301183983616", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1053408299151753070937866240", - "unlockhash": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf" - }, - { - "value": "1170407261310609221001674752", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1277344533657219609850281984", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1095081077372849209696321536", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1054844583128988610840887296", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1110007066570522996324433920", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1033974096386724197077450752", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1021149786004102171518418944", - "unlockhash": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84" - }, - { - "value": "1086317896872802419597639680", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1040126529589146696184496128", - "unlockhash": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d" - }, - { - "value": "1001927480251239237461278720", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1066966507595037750612197376", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["178800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JQ2o2C7MTrHOUUfOLVhAypRXvgfTuEDilhxx8jCxjQVngI7KNrP9YAQnuHDTxmX5PHX0Zk7MOUjPnuucAFs5AQ==" - } - ] - }, - "transactionid": "a103a797418c2f0f51bbf0c3a5cfac5f86ea35db8f0b4f22c988d0727690a4af", - "confirmationheight": 218118, - "confirmationtimestamp": 1564478571, - "inputs": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "abd49a6186dd6b8d6d3e6934111cb1175290e5ecfc3ebf2ca22b0bc7a5d06a448fb64c5a6a9a", - "value": "78321566977833539029107736576" - } - ], - "outputs": [ - { - "id": "e4f0660392c09ae1d1550e69a50a68800b5d519011f4ea9b2e6b73972782f4fc", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1067103623415482546621251584" - }, - { - "id": "c71f18e298a83c3df1c36dbc9ac6ca3c77cf8b945f16ce554191a7c2ac6ae2c2", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3606850898532315041009500160" - }, - { - "id": "7c8ab6cb695ea5d3926285af48995d4e4e4e0b20a9fb20e1aff86f1c723d9394", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1200604817451498664286748672" - }, - { - "id": "f5565d11d07234538037282c2381b9a383d685a0e95e5963252e108c9cacbeda", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1142471210281919286378233856" - }, - { - "id": "10c318995a4da553f5c6f765e38a4b9c4df8f67a0621db25395a2b0daee43f84", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1280561008164527800120770560" - }, - { - "id": "474d53e401cbd17e2a77f98f47b47633c0801289cdb147ff1d615ae278c086ce", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3689358102071416957335240704" - }, - { - "id": "d62e76bf24dcd1aa0c43241281fb948a959ed7b15152af792e4f4f5cfaa8c5f1", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17383949398346429862642712576" - }, - { - "id": "58da4c3d78e29943e9ba293e1e4ae87d96dd7d843be4fbace2a9a99e1bcd797f", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11131753814571289675674157056" - }, - { - "id": "46712e2719f367756cf7e6871137230395a39999d12368d53b3031a40af26dc8", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1066051785935992670377738240" - }, - { - "id": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2820108406750158796917571584" - }, - { - "id": "aa641f9d40681d35be22f97a2df4df82a87c651b56fa517507440757fd2fcc26", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1188218202438719110467551232" - }, - { - "id": "faf5cb5d4a378be1e7090bc4af050606d973ddfcec0defad174728eeb1392d7b", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1331191372656907899006615552" - }, - { - "id": "61c7979d9ceccc9edf6fbe5a144fe84b067569cf4752fa2ca8ac85b305239e99", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9580365513576136952378294272" - }, - { - "id": "25673a591809c4e0a21b7b202250b763bdff5f73da93bb41f4e24fd55604d550", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1056958841228133199426027520" - }, - { - "id": "dc2809fcf8669f3c4cfb2bc8666f41c0559dae1bd132c2da5a0f9e4e289e0c69", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1070725988217865189334188032" - }, - { - "id": "18266fcfe4eab63bb98a0deeb2a156a5309b6fa86546a9c14c8c4ae000f7795f", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1249866162163007899448115200" - }, - { - "id": "2018204b4a7b1216d283445db80de160e901986b93cb03bbb41a17a3321ba694", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1030515649900745852563226624" - }, - { - "id": "e46ed11975b57930a2e442f2ed3691ed40ed6b32e314f86dfb8581703a0c835c", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1024714419819799909798395904" - }, - { - "id": "d46b4fdccb2b9eb2ea2cb9fc6119e0c11b77ae485bb9b94849f7e8b649e3b9ec", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1034191559435645461367422976" - }, - { - "id": "63bc68fc3565737dc7a143713b99ffdd21981c18400a38eff1704236bf1bfe07", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1082528127038452761667043328" - }, - { - "id": "94e3f59b1d7f4b82db7a70ded339f7cb1dd23eba1ee03e57ab5ca433d17cfde4", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1271744157946098301183983616" - }, - { - "id": "ccbd6a91b493061c5569fa35e161c62e8017ab2730d63bc640b7508317670a1c", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf", - "value": "1053408299151753070937866240" - }, - { - "id": "5a71dbdf3f4cbea06862bf7b8e99adcb2cd6c33348da9468c9a2c3429eb332ce", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170407261310609221001674752" - }, - { - "id": "c45119d310a11c47d517f21f1e4072fa3c630220ad85a00b407fa48533b7298d", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1277344533657219609850281984" - }, - { - "id": "28257fa158de6a52bf87478b880433cf28f7d73af94d76a95abc9579b91a8150", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1095081077372849209696321536" - }, - { - "id": "ca83fa0aa986dc59367cebb72d6ded04eacff681e2e84a9be051387529b83965", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1054844583128988610840887296" - }, - { - "id": "130770d2bedc2fb0834d7eb0ad3a98161dd7e574a984b02118c48ca93f6cdaa0", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1110007066570522996324433920" - }, - { - "id": "715bf0b0a744dc7406e38981162c63420188eb9c15b1b6b2946294e1c778efd6", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1033974096386724197077450752" - }, - { - "id": "0a4f1ee54f29f2fd10b7c932c97afcc2ae7b68c72efddb7b85c7506598c32a68", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84", - "value": "1021149786004102171518418944" - }, - { - "id": "6a4e5b6bb6b5505a683a46f0566b86d7f00e685ac0a17ec9e81abab11b4b193a", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1086317896872802419597639680" - }, - { - "id": "c4cd3d3762bb83ed6dc083cc86c59b5f73dc85093cc242625f57b7964426b1a9", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d", - "value": "1040126529589146696184496128" - }, - { - "id": "7b24efb4df4b62c78730fd5349c509a26265fd78b4a53d9cfe5ff9a19950e5d5", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1001927480251239237461278720" - }, - { - "id": "a1e05ecba513da5e311ae36603ca3d84e3388e3531af22e26dfbcd3536d5d86e", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1066966507595037750612197376" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218262, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "178800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "AkMkl9bDng4f14fRE+cx0vIBvEaVMyAWTBN0ppZV2fY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1006115121946052132620795904", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1077757056858005072358146048", - "unlockhash": "36d906926d31c026d1b8afa5ea3b081d90e56b783940258a6080c88c47f79485ad03131596ed" - }, - { - "value": "1261616722630208633152995328", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1377121267700535616143884288", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1006573242388010429731831808", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1155606153781333282080686080", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1242957888857395106367930368", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1069708289171825494478815232", - "unlockhash": "c602b3b2afcf1994e320692dd8a430482da14ab851a3ee2abc478cf699e2ec005bef5fc01c02" - }, - { - "value": "42356883711598264987598979072", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5032099881622398662743162880", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1204652580091315209960947712", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1842801648649720093299703808", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1617712690964586957131218944", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1010012627931276744210219008", - "unlockhash": "8abbed1e22a1b0331a9bfbac6d052ffc5f073968ee9b4baceb3818bafa7d6bbb2aa588eba90d" - }, - { - "value": "1067098078756863253175205888", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1146775180680066403506585600", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "3209939044013003990936584192", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1060776902753653163450433536", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "2180906999682775826055561216", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1993098651475005940495810560", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3844140322196198610029248512", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1238955150291049237894922240", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "3758959627836054444162678784", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1315710069896515394987884544", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3758145221164111482954186752", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1915463854295617758243586048", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17792232111961249104772726784", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1960064386293437508899307520", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1031641779791116565403926528", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "11313127924259796374310092800", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1054132753645990535711686656", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2846299247203753521666064384", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1191903619196551391491391488", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1367583233156852990678663168", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9683765117214262713624035328", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1289570613782679395962454016", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1029328613998422569468821504", - "unlockhash": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769" - }, - { - "value": "1054540569087072793601802240", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1073972016055257197835190272", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059075575294029210858815488", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1029616655427467363005497344", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1206048536680381333388787712", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1398764960343904014559084544", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1892020039226171063871209472", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1768780606884800256480903168", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1075082704453619740588900352", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1023031583261975468117590016", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1872916272858059971929047040", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1065593294668769439567052800", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1226393994005440362463625216", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MClhC08LsRMXASAtY4N1kqevWhXJ5Jz2UP6+laI3SqzSf4Xe/C1CROjxQM2GzEUWTcnPwAI189mNyQAECe4eAw==" - } - ] - }, - "transactionid": "9c490d64b46e835fe07131e62e50fe064d3825e1505f8ff6093d509ce8c1cd1c", - "confirmationheight": 218124, - "confirmationtimestamp": 1564481885, - "inputs": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "c2eba088784bbfbcb49bad654b2375491720c32459f9f315ab7ecf95b7152b2e844207bbaa8a", - "value": "156057314195982904816028680192" - } - ], - "outputs": [ - { - "id": "c0399cd2386cd469d146579f4b78b6f831d592986bbc7d12b366ec6882b3e34b", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1006115121946052132620795904" - }, - { - "id": "77697a74eac161d0b58210ae5ec2210207cfdf37c134390c39c4b55dea3f4e9a", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "36d906926d31c026d1b8afa5ea3b081d90e56b783940258a6080c88c47f79485ad03131596ed", - "value": "1077757056858005072358146048" - }, - { - "id": "f95d7b71b6535dd801ca591c749db149052b1da027995994d2704714d9ff221c", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1261616722630208633152995328" - }, - { - "id": "bb7c708916ff7a5d4d65a0e2f00d2da5e8bcf64ef9e7028d519a737724490c97", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1377121267700535616143884288" - }, - { - "id": "581e0d4f4dc4998cd698a1b10fd8f7426efa405752c6b0be97108645bf25c414", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1006573242388010429731831808" - }, - { - "id": "446e059499f38b2c5fc00a0d0d1df53d89f14c927f054f2f553a7379fea07cbe", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1155606153781333282080686080" - }, - { - "id": "a272b2b7dcdcf930ac7fb400198b3d7cc1eb3b5f52ed04e30c429a95533d1d37", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1242957888857395106367930368" - }, - { - "id": "f441fb86908181fc9cbecbf654669ade5963beb8d5fcab78c2c037d192726454", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "c602b3b2afcf1994e320692dd8a430482da14ab851a3ee2abc478cf699e2ec005bef5fc01c02", - "value": "1069708289171825494478815232" - }, - { - "id": "049efc078e026880a31da3eb522161b368a3ee88e3cc07deda7850b9935a10c6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "42356883711598264987598979072" - }, - { - "id": "34aad2a609e246dc2c6b1816c330d33705d7661fe400daec8679e90b55457b91", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5032099881622398662743162880" - }, - { - "id": "6bff21bad66e38b7eec7514ad9459f7821c0b9be1d79e097451d07f333b1bbc8", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1204652580091315209960947712" - }, - { - "id": "62040dfb359a2e01e18eebcc2cefea0e4633ff8bc55518c41d3e8bc748690f70", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1842801648649720093299703808" - }, - { - "id": "2c53d14030515723961cddc1e1d6a44b858e9066d9e5a15bcc13444ceaac8d75", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1617712690964586957131218944" - }, - { - "id": "90e48d757e5afc2e64e6c4cb244f4c4d94cba59669b9dbed80ec358b276ffd58", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8abbed1e22a1b0331a9bfbac6d052ffc5f073968ee9b4baceb3818bafa7d6bbb2aa588eba90d", - "value": "1010012627931276744210219008" - }, - { - "id": "f59df9686951a37fc75925c96ff43b2156621ace15b76730d278ca56ab825f35", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1067098078756863253175205888" - }, - { - "id": "4233b9f68271b8a477397226f60aa5794365efb2ff25b4147581af0324830670", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1146775180680066403506585600" - }, - { - "id": "7ad910226691d7a4d029ce3f77a39c773dfd74f41f0e1b5949d9affbb6552ffb", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3209939044013003990936584192" - }, - { - "id": "f1b10396c0b976a1940515ed20501b1c7d7acff345413653ffef43ad202f7cc6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1060776902753653163450433536" - }, - { - "id": "4669acb20eaa5e74730f42414643012a167e6df32efaab99fd35649526936bf4", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2180906999682775826055561216" - }, - { - "id": "4887e76bbeb71ba295a735b9190e01f557d702f429fd886ccd1830c27c0bc995", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1993098651475005940495810560" - }, - { - "id": "0e87a52f1d91fca099b0cf8d925fda91af3522732e79f77e95d2630447369b91", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3844140322196198610029248512" - }, - { - "id": "c5ec10d91de93921adaea31a754cf2c78bb0323616ceda43fcd5e5bd0487c165", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1238955150291049237894922240" - }, - { - "id": "36584a827315284de3b92127a85c71045bf171d928a15ccc9557c2728cdd90f1", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3758959627836054444162678784" - }, - { - "id": "297beedd3ccad8812c7d3823c17d3e91e75b624e9479384030824fcb9256d966", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1315710069896515394987884544" - }, - { - "id": "1377c0e7dce525853e3b04b75929630e50ad1d76101f1fddd260cfcdd3876e29", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3758145221164111482954186752" - }, - { - "id": "aeb1729b687843cfedb005c5aeb3b6bd68abb79e52ce19e073e05ececa083c4d", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1915463854295617758243586048" - }, - { - "id": "611dd27c660296235732fd5fba48d7b90e7a52a441ff10bd8ada858d08d8e382", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17792232111961249104772726784" - }, - { - "id": "38adb2388fa861505368595fdd7d29bc46e199d0614ded31bc52cbab05f41493", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1960064386293437508899307520" - }, - { - "id": "3997d8d480f4e8903d180971e5d9c2d7cb4f0a27555714d45684420df7918ada", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1031641779791116565403926528" - }, - { - "id": "de105f260610f343d5e7c502d8c7872f967ba07465859be83d6079820c07b700", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11313127924259796374310092800" - }, - { - "id": "fc0d76d170aaff9503863e803d86f2f83f0b919ac6e5d08808d9206fa96ce6a6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1054132753645990535711686656" - }, - { - "id": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2846299247203753521666064384" - }, - { - "id": "c09084afcc053bf84a826c792f0e8837df31dc255426627e65fc71efb8b71e69", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1191903619196551391491391488" - }, - { - "id": "1a715beff8487d52ffb9edbfe897c794f9868d80f4a69713af4a551456fafc64", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1367583233156852990678663168" - }, - { - "id": "e33aba7c79cee56e451873c1b3991d9f4eb7e1fa9a298720ff542dafa50e5ddd", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9683765117214262713624035328" - }, - { - "id": "88a5db07eab9c007e181c3e359499ca04177d9176b4ccb9d305f5422bec6ddfc", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1289570613782679395962454016" - }, - { - "id": "8a94d61e99954751eceb9d92cb68ec7e86c73e4bdf8bb78137eea42e13dbf4e9", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769", - "value": "1029328613998422569468821504" - }, - { - "id": "1db4ac43c85bf35fb054216dfdc100334e79d41b3d25fbc66b2c63ec2142f6d4", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1054540569087072793601802240" - }, - { - "id": "64e9a97e3b94629c8c2b9e2ff062382c65d15761ebb50f4d0e189329a2a9d1de", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1073972016055257197835190272" - }, - { - "id": "5c4da1dd5854f9a527cc4ea4156ab4556cb20fdc00c5d8716aede453ca6722a6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1059075575294029210858815488" - }, - { - "id": "1dd929d82d133b27465bc9899f2ea8e8d816626560c030118457c7c09ab3b4bc", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1029616655427467363005497344" - }, - { - "id": "f72aa942b39ac9420f11459f5afb7848b5132bb29e5e32cb77cf0255318d22b5", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1206048536680381333388787712" - }, - { - "id": "7e43bbefa4af7c4a913376614d31f59386d13c4d05bcbf28e8e1c0151e021267", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1398764960343904014559084544" - }, - { - "id": "65020996c43eb6961fc081076d1d9968198c0342384dbfe1720b7c56da9728fa", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1892020039226171063871209472" - }, - { - "id": "9c25058ca7117d6f46a5c246c6f79d37d330bfcd35662d40033f7fdd80d56572", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1768780606884800256480903168" - }, - { - "id": "519d28c2ae4ff0b73ec9e8a0364e647281138a41a60a6b3b23d602576f754eeb", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1075082704453619740588900352" - }, - { - "id": "a87253db5f42e33faf38f3f95e3f1db89f91360bf92ec6e03533ab48f7f1adf2", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1023031583261975468117590016" - }, - { - "id": "970c9267ce276b6cf4d1c6a7ce3ca4ef7745c7c8d12eeb35dbac875fedd0a719", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1872916272858059971929047040" - }, - { - "id": "10471584e4b23e97cbe7bd230243225125c832359d395074998432df1ba0cae7", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1065593294668769439567052800" - }, - { - "id": "13cf6f12fdf8100c3fd8b42d2ae278574e5f315a4adc91ea0960f84166a6bf07", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1226393994005440362463625216" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218268, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "bAi329KTW62sVeeyzY72HuwIFhPA5V0JPSfCu+b5yiw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1037029684180142086047137792", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "1944660225829519742833000448", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3416309699741235439667773440", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2390956718961282208130662400", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1034262113248753722958282752", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4062776947252216784392028160", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1012143300576476966227247104", - "unlockhash": "2627fd065a7c7684892573f39aac87ea8b7b98e86b1ccea02c17da93a4beb0f90d0f41b09145" - }, - { - "value": "1046880448580468594097209344", - "unlockhash": "84853bfa4bc65b2fbe41012a93f9d79cb66f33893f5187f31593c76bc8069cc347c0ed871891" - }, - { - "value": "1058050046658118622639292416", - "unlockhash": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda" - }, - { - "value": "1207073770846243066510573568", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1085998117835410722779561984", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "4076110459553017920921534464", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1117765206981652924100247552", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1392265515379145303465656320", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "4017226981975712734380032000", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1129432138909471986812977152", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1469303578264578407677296640", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1126736935376455721088974848", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "18930920351105102669171130368", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1033535746867980515797893120", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11856136176176325715300450304", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1129805483021726423831281664", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "3048695663695426512066969600", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1330154131825206363731001344", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1492166809450816321294958592", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "10329560453993273097694740480", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1011167783543899621770526720", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1143952725145338812972924928", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1059476035358270589377511424", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1024379990641337341191389184", - "unlockhash": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d" - }, - { - "value": "1012198451501441182713053184", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1259178222503416815502229504", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1060621403900288996096344064", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1155104005404635281053122560", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1073367978558073460991787008", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1069346744285905529830244352", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1014244178812704810181132288", - "unlockhash": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e" - }, - { - "value": "1016528215463880911527149568", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1004246416404011314269388800", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1011798932284100349893902336", - "unlockhash": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add" - }, - { - "value": "1265243169114599342686076928", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1021180863793703639536631808", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1246734392510995725927579648", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1083776920907899563856494592", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1297762197880984476542042112", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1003754431837234565653921792", - "unlockhash": "0099c1c333f9ac11099b1685ec7318ec908bdc8fe21221afe9d51b74bbad6ead0435accf2644" - }, - { - "value": "1009913604949128846912782336", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1087726993492361282198700032", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1178303031250791703034200064", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1317192290672887734486433792", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DGmMTY3uA7+cu1MH2s4+J6SCb9zTLZQNfZT+Ic8lM4mAHCycVxFrok7L3HcdASzfROK5Ejn0rC6Fadyl/yDLCA==" - } - ] - }, - "transactionid": "8984609b9096ccc904015f15f2e9ea29d4708b8a4bc76a77e67e25bb01292981", - "confirmationheight": 218127, - "confirmationtimestamp": 1564487262, - "inputs": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "48b71687eaa838f2442beb176252b5285568abb1819d5b2b533e1da25b9ed5b3441ead44a8f0", - "value": "109203395686503652471823482880" - } - ], - "outputs": [ - { - "id": "85c274e1a3c75faaee8a9ec8ab3ab1936716a7504a02b61d0b3d4bd3796066d2", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1037029684180142086047137792" - }, - { - "id": "187874c8408748a47f048a245444c47f6e7205f1bb8b2fde4e551ef477b2f2cf", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1944660225829519742833000448" - }, - { - "id": "940a42f770165f7f342f767df2d50062803f8dde7ec567e5afcb2e7376ebb0f7", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3416309699741235439667773440" - }, - { - "id": "830cf83ced9b2f5738247498c79519e240e2821cae8d170f6fbc0e8ad4d203d8", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2390956718961282208130662400" - }, - { - "id": "69e959c1cbac29b8064045dcf08309cb2b7ffe8dae9d82a4d3c61359746870bd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1034262113248753722958282752" - }, - { - "id": "5c189bc92f315141244428e724a3f522f23a030d140004a5d5ee547648fcb8bd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4062776947252216784392028160" - }, - { - "id": "2f4f139ee67ee8ceb5034532e8c45620040c841b737756c67709b13cf6263908", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2627fd065a7c7684892573f39aac87ea8b7b98e86b1ccea02c17da93a4beb0f90d0f41b09145", - "value": "1012143300576476966227247104" - }, - { - "id": "9ad23a78193ab33b003235c62bd39c0a23c32260fbf050c56fa102d1fdaa7c58", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "84853bfa4bc65b2fbe41012a93f9d79cb66f33893f5187f31593c76bc8069cc347c0ed871891", - "value": "1046880448580468594097209344" - }, - { - "id": "e35d41d5e1570a9a23e22f608291c378956edf07295bb50d524d1365095a719d", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda", - "value": "1058050046658118622639292416" - }, - { - "id": "be0c091a2eb12e5d300944f10ce9cab0025fb7ee42c7d7eceb057080a81ff067", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1207073770846243066510573568" - }, - { - "id": "35ed62eb92b6cf8211e7bad2d63128d0bce699be1171b7235e1500046ea83700", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1085998117835410722779561984" - }, - { - "id": "681bcc1060fa452bd404a77afcfa79c6ddd8e9ce960594325d943dc28d27c14d", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "4076110459553017920921534464" - }, - { - "id": "64bd6f31f4a73270c567e7e4737dc345d2b24d46af709e92cf3c460334fc6583", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1117765206981652924100247552" - }, - { - "id": "634a63b6f7c16c70d294c01d080d25e85e280305ff38cf91f81e5728571f0e73", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1392265515379145303465656320" - }, - { - "id": "67834ebada78717ea5f73c519b921c3382e283a4c33afb490eb3e4435b351800", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "4017226981975712734380032000" - }, - { - "id": "a09dc9842b1efb04bc85a06a972528345f335b2a884d1348ad0c785636eb9be9", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1129432138909471986812977152" - }, - { - "id": "460b9f2e9aca433a15dd69a6f8fc58912a73e79451880870f7134b40fbcfc65b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1469303578264578407677296640" - }, - { - "id": "e9ad40768822b39d3364da9b5176fd36c7507ea83127afd16bb74275d144588b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1126736935376455721088974848" - }, - { - "id": "6df74e67aad17535bce352fed22e6d1997fcf3b60d2fb82a5928c41253fede7f", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18930920351105102669171130368" - }, - { - "id": "c584af8d3516602c2fd44333cd9f8f2cd7ce856ea7cf9977b87a0e1c38c814cd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1033535746867980515797893120" - }, - { - "id": "cbdb8db5825d5c71c07e28660094419351489e3801d60d7af3a01e0a818a4548", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11856136176176325715300450304" - }, - { - "id": "5906eed85f218b00aac2947485f70d0f5da1391c7abeae2d4c24da64f7a86e8b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1129805483021726423831281664" - }, - { - "id": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3048695663695426512066969600" - }, - { - "id": "995bf75697635795045bccd833c1d22edcf2770255b275b0b94ccf5833a89aae", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1330154131825206363731001344" - }, - { - "id": "8500ffe8b24ee7b03631cece81a6714b463db2fbe6386c0310a8130bf843ea30", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1492166809450816321294958592" - }, - { - "id": "1d16b6a3bdc6024070cd78d3301219f5cbafc4af43bcfd631cdda9079f871d52", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "10329560453993273097694740480" - }, - { - "id": "585913a91eae50cdc1b51901cc5d60f2494b9d84799a0cd3eb8de5df48b8d0da", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1011167783543899621770526720" - }, - { - "id": "4d13d8eb441cd54c09c6a03f0958a316c331bc3d1c13424bbce82fb055f62119", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1143952725145338812972924928" - }, - { - "id": "3a5ae5f602d76eeda76b644d8a52c7cff65a648d36fe84768b8f3994ccb867bb", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1059476035358270589377511424" - }, - { - "id": "0805e798a473966c408a91b04c81b978f1df4a00928ea927d857dd6934e74614", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d", - "value": "1024379990641337341191389184" - }, - { - "id": "81e71b94efb54ec426c79a4db9ca9f1b2d6f040a49967094dec55161899cde29", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1012198451501441182713053184" - }, - { - "id": "9e7df38c3d52ccc87c9e22a1a169edce80bfb5837cc707a366cbe0a614cc4cec", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1259178222503416815502229504" - }, - { - "id": "2adf3e053443a187066f64ee4afe02f66cd6408496baa7d66cff504ef5b7e2df", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1060621403900288996096344064" - }, - { - "id": "00d6962ae2ebccc22f4d11144c0ef8c49c22b1ca5c8c94ab08f13369ee3be2eb", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1155104005404635281053122560" - }, - { - "id": "00daddab61ca9866ecf8de0759ee35b07e949c05390fcd45f45d15b4ee91d9c3", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1073367978558073460991787008" - }, - { - "id": "fdcc7e7367db7a5f39c3d716ae1a0054cdeab1d37f556c971c5b10cf8e2ae9e8", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1069346744285905529830244352" - }, - { - "id": "c02326557f83779d03e4d5b018e1814dbebd5c0bd51b4b698fc7be670eac6332", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e", - "value": "1014244178812704810181132288" - }, - { - "id": "ddea7294bdc07d1ad552848906a0f4de401af631ea5c8106fc49e5a27aef01c5", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1016528215463880911527149568" - }, - { - "id": "bbb49bf5749f6f60e030e28a20aebf0c323dc5ec0a911c32b6b268a5ca374a44", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1004246416404011314269388800" - }, - { - "id": "a08af90edf732212d2468c5fe2ffcb668931c3586b6d5492929fc191ff8401fe", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add", - "value": "1011798932284100349893902336" - }, - { - "id": "29eb4a4b2ac5b06fc906b1da9653c74f8736dfed850c22cf00f878a1f206ba66", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1265243169114599342686076928" - }, - { - "id": "7700193f67621a094448ece3702318456091474abd5c94554685fa2294c4075a", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1021180863793703639536631808" - }, - { - "id": "99b0640684090bfb44770448c1c25f89b8760c333c4bd23f3c0de495a54fa13e", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1246734392510995725927579648" - }, - { - "id": "23d272182698e5c8538dda679a9dfc646b970eca8a675af7f65137c76d3dfc62", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1083776920907899563856494592" - }, - { - "id": "51db8ef4ef939d9b4ad0e651fdf7cd6337664d1b29a091e1f0965e94eb1d8e9a", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1297762197880984476542042112" - }, - { - "id": "7136e5ae0ebb3625554b718b96c50666cda97f623434e7c0bd0a4085354ba246", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "0099c1c333f9ac11099b1685ec7318ec908bdc8fe21221afe9d51b74bbad6ead0435accf2644", - "value": "1003754431837234565653921792" - }, - { - "id": "0e4e92096d8ecea7410ee20a576c9559a51776a9d4dc0d416bc9e909898ac9ef", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1009913604949128846912782336" - }, - { - "id": "1a406a8cee3011ee81ad9e118a390b83a3c949ada3ab18fb6466df32d185e2c4", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1087726993492361282198700032" - }, - { - "id": "f27941804d99d45d0306830fc321c30a36a1701f443cad1fac8b0e81c15307e7", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1178303031250791703034200064" - }, - { - "id": "9e8ab06dcaa42ff6d17a46424c5b65c9d1e8be9454fa1231a8bc163eda9d7865", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1317192290672887734486433792" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218271, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "bqKT3DAv9kJ/KqlUVKNTAnkOxtvKuBobO4W4ono6vJs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1059644020650375557973213184", - "unlockhash": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0" - }, - { - "value": "1109259119404312655682863104", - "unlockhash": "dc73b6696bd026c7dfaa0d9b20af8f0fbd5bc816f9d45fed3256250b63b74cc0d19486904a38" - }, - { - "value": "1106748490469012445607493632", - "unlockhash": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44" - }, - { - "value": "1084129754063711958928982016", - "unlockhash": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910" - }, - { - "value": "1144266248415212470515531776", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1269807692013506655761727488", - "unlockhash": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd" - }, - { - "value": "1024489664572948748421955584", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "1352062801843881087661506560", - "unlockhash": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186" - }, - { - "value": "1202156805821809382537560064", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1209876269322472444084617216", - "unlockhash": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b" - }, - { - "value": "1219545612520442727659470848", - "unlockhash": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db" - }, - { - "value": "1040418104290733036851445760", - "unlockhash": "5774026307e750665d312dc99449dcd3004c7e4186c94095692250cf9405e697b4159c1170c0" - }, - { - "value": "4261883657786323424434454528", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1236276148750365876276953088", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1161406049698907163685552128", - "unlockhash": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528" - }, - { - "value": "1479084094201135933803200512", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1095141739658467096598151168", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1254558496408710982510051328", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1037149073694193469958651904", - "unlockhash": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c" - }, - { - "value": "43609936809674054354763513856", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5057336264682840285455056896", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1273681315442532512805421056", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1030754810137359855648243712", - "unlockhash": "a66256eaec0e1236519bc23ab4b563b2667891d936c0a18fa5bb1419f7ddb4e3d34a4904eb14" - }, - { - "value": "1916852839616843638781247488", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1018199610326028808923185152", - "unlockhash": "cb14ee8320119c4c834a1eb14c1005c5ede92cc88bec2437d18796054a162a22d3bf52685abb" - }, - { - "value": "1654233034812611973544411136", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1376012330029645097223585792", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1034754309593395055790751744", - "unlockhash": "880229c0a1bf01bce9841bc3f16e1643dfc25a3a37896071bd99d60b608bc399b1658b563849" - }, - { - "value": "3294077684682173315635216384", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2208009763051540492912164864", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1039548991139611002697416704", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3990456000464087072991346688", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1263442697224883302654017536", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "3972386296083260390273712128", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1046447656860458893167689728", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1112939939317231810628812800", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1354794221753401233817731072", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3914067913246566181073059840", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1959793449281643711976964096", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18492828570596198691926704128", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11734719183886923464074854400", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1128922325205686210395111424", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2964984241465839560331100160", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1273314617204934328472043520", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1429927091082503911540523008", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9767326273452651060018544640", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1075885654946249793618542592", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1075947329358765356516245504", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1101568580668219687330250752", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "1046085548285194333336371200", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bPCWhGtc1G8sXCxKPiqAsujpnRiO00F2i1bHKDbZGw071/a/Ep2FTb1z/F+cLob9X864JrluWq1ivQPYXm6MDg==" - } - ] - }, - "transactionid": "14f64ec83f2e081e44061af0816f698877e16bdf06577f6eac96b6e9b88f575d", - "confirmationheight": 218133, - "confirmationtimestamp": 1564489589, - "inputs": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "ae9486c98cc93e83dc8afd314e55e66d7af33b7886a403bad532dd0d4a7bfbf2b05a1a58d2b3", - "value": "159567379197159858507277221888" - } - ], - "outputs": [ - { - "id": "38449b5331458d0c0bdbea0a0100e088b7ee6606e49755cf58389d75529faba0", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0", - "value": "1059644020650375557973213184" - }, - { - "id": "25efea4c609cafe147daeca5ebe85f31521571bd971121b6df55ce5fa8325f56", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "dc73b6696bd026c7dfaa0d9b20af8f0fbd5bc816f9d45fed3256250b63b74cc0d19486904a38", - "value": "1109259119404312655682863104" - }, - { - "id": "54e0621043649e5d974f93225841f82d2d6e0cd41dd6c57a2c72e02b93a3faa2", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44", - "value": "1106748490469012445607493632" - }, - { - "id": "6711eafcbb2b29193e7ea7d7a7b23322e9e32d182968efadf759626ca8333768", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910", - "value": "1084129754063711958928982016" - }, - { - "id": "03e9bd1b4d084c9ff56a19db3d42421a74fa7e221898a136c90805bc3359cdfc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1144266248415212470515531776" - }, - { - "id": "a652b942bfb3067de098719c4a0cbeb1033706b2947ac58af9038d4918b2f9d6", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd", - "value": "1269807692013506655761727488" - }, - { - "id": "9a604a966d3f3d0d66a9df345e504e9e353534508d09fc5da02b84ecf725b49a", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1024489664572948748421955584" - }, - { - "id": "b2aec7fb11b899a3e1bcc84ec1a6121438d809c03cfd8bcb5016fb50a697bf8d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186", - "value": "1352062801843881087661506560" - }, - { - "id": "4d00af6bff488bea93ebb64a3c27043a906ac072fe7f8710a218f6703ce3a74d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1202156805821809382537560064" - }, - { - "id": "1aca58087691e4a4ab95eced1c3bd2b5327cf2754fe5064c49511f3dc8339e46", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b", - "value": "1209876269322472444084617216" - }, - { - "id": "e09c4e605cd8dd722e915ebea372643834a561ebb6a25db08dc8fc0548ed9aa4", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db", - "value": "1219545612520442727659470848" - }, - { - "id": "fa99881069e359bb190e07da532494b2cd9d553d6fdd8b4fd64708475031e13b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "5774026307e750665d312dc99449dcd3004c7e4186c94095692250cf9405e697b4159c1170c0", - "value": "1040418104290733036851445760" - }, - { - "id": "7d8c31faa9912df3734b252a9231d21a8c05dd69cb85dbd0590975b19314e22c", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4261883657786323424434454528" - }, - { - "id": "ddc9c73a51cc1c95d7a9d9061ade51a6bb79f1290c4e861cd9f2eeff03dc92fe", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1236276148750365876276953088" - }, - { - "id": "0ae2347c7f034b33567d13701b51cbc1d14eeb13371c3585d6c70c082d200df1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528", - "value": "1161406049698907163685552128" - }, - { - "id": "28d6e872689c6f7fea0535a62a8ec35b3b424b9784bc1c37cef864c978acc780", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1479084094201135933803200512" - }, - { - "id": "a234e88e6aedd9ed0890955d6ab6b74f2b0b7733579b942eb75e2fcba08d336c", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1095141739658467096598151168" - }, - { - "id": "c8ba8cedac16ba15587e8b50a54530174d7ccd00b925f1db5645ab42b03bbe84", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1254558496408710982510051328" - }, - { - "id": "2cd72984cfb6da04c2b215ad471acea0ec9812e271c1a4baf44a96b4bd974510", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c", - "value": "1037149073694193469958651904" - }, - { - "id": "4d4accb908b86e27641aba28d7b475eae8725fcaa67745bc3c493b2191a2783b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "43609936809674054354763513856" - }, - { - "id": "cd272f9976c6ec59fd0d2236db2c69a35729d88b7e5b3e54c86a057a4ab35eac", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5057336264682840285455056896" - }, - { - "id": "e9e7027e5e87239ccfc30afb5aea860599794a49d3a4557bf4a463928667c793", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1273681315442532512805421056" - }, - { - "id": "b819f3c1aa01f4ab71c2e21744878c5d9e49dc8e88d2b2e704f6cdb2c379c02a", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a66256eaec0e1236519bc23ab4b563b2667891d936c0a18fa5bb1419f7ddb4e3d34a4904eb14", - "value": "1030754810137359855648243712" - }, - { - "id": "d1b337a2026221af834ecb84a6b2dd591f6a1b4e7ee20d7e74e12b1a38ee60bc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1916852839616843638781247488" - }, - { - "id": "2d715c35b089f35beab7721de24cabb4e8680448091ceb7798b6c53e6ef67af3", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "cb14ee8320119c4c834a1eb14c1005c5ede92cc88bec2437d18796054a162a22d3bf52685abb", - "value": "1018199610326028808923185152" - }, - { - "id": "aaecddbbdb6df45d5cb95de730ac132ec5f65a83e241ad9313d2e9525a9d80ae", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1654233034812611973544411136" - }, - { - "id": "8b542077fdb3c3e37e7fb513cb5b8166e608907b04677caf32bdaf6b78a8ab61", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1376012330029645097223585792" - }, - { - "id": "5fe2de78f51b5f0806501040712656992fd8aeaaabc191d1daf187ab4fc92e34", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "880229c0a1bf01bce9841bc3f16e1643dfc25a3a37896071bd99d60b608bc399b1658b563849", - "value": "1034754309593395055790751744" - }, - { - "id": "4df58c34c729ee0fac253936117078d1b9ff873be52b493d349f129713fdb5cf", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3294077684682173315635216384" - }, - { - "id": "4513f474ce41b281b6e78474063d6bdc007cfa7b7fe383e04c0fc81aec475493", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2208009763051540492912164864" - }, - { - "id": "063b9c757a790d1babbdda31b9371871c0f70a43072a6b0402f68f83e579071b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1039548991139611002697416704" - }, - { - "id": "31ae179e65479966e117399bd3a00fcda968fe74e5aa6304da601d0142b61105", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3990456000464087072991346688" - }, - { - "id": "e5b354a27534074ea500ea6cc5841fb2f83518b3421e71f821c4e18e6a8e8b29", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1263442697224883302654017536" - }, - { - "id": "91b5d6a13a0a444f3791d7488d0fddac5ef26b2b3d7aeaa4f932b50fa187327d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3972386296083260390273712128" - }, - { - "id": "415bc46c559cf794e1b909503db9f81ae93e264ce42e43c77063db0cd76a53d1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1046447656860458893167689728" - }, - { - "id": "d939c717acc69068efe34fb7b4e8a807ddf4438ed29227dc6babca9f05fe4399", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1112939939317231810628812800" - }, - { - "id": "d85bd95536e8a6964939e7109ac562354d5dd6bdc97ad71284c50b1b39b034e1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1354794221753401233817731072" - }, - { - "id": "34c3768f566cf5e7fce015e23b68cb8b630325636798fa6d3038fcfb8433f3a6", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3914067913246566181073059840" - }, - { - "id": "ed342667441699fc7c3feb04316425392c71d7947b17c6170d5e34dc10b5efbc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1959793449281643711976964096" - }, - { - "id": "2ceb91c703c3535a0e793e18c341da842111092eee8c534fa185b6558c141e07", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18492828570596198691926704128" - }, - { - "id": "271b254da02a6b97443e561d1429c126d815e4cb61956f897bf75d9d0e91349f", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11734719183886923464074854400" - }, - { - "id": "53ab9570db7760429a7c30f30d2f733ce617f684e9ba329f0c58fdfb359175af", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1128922325205686210395111424" - }, - { - "id": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2964984241465839560331100160" - }, - { - "id": "220da716a914eac9dde62c6c6914b5b06e65cbc34295054b3f00a32c1dbbce43", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1273314617204934328472043520" - }, - { - "id": "7e993592ebc90f282e807680d587b79f831fd86e6f2e388558f8db68afb3ce69", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1429927091082503911540523008" - }, - { - "id": "b00a76e99f4e7237cbcc3e7c21cff82625c23f6aeb57188149768db6be7767f7", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9767326273452651060018544640" - }, - { - "id": "bd50a713b225151b6586e06327821db69c26eebf8d36304774e44e429166c12d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1075885654946249793618542592" - }, - { - "id": "73e41b6e1d80bc3d4fe43418c6fa154697bd4d701cfaeeb454d640d6da0f8674", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1075947329358765356516245504" - }, - { - "id": "ce919991d68ecee9b14dc31485e1b4634f1b61b1423b9c9ba1a499fa26fc3da9", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1101568580668219687330250752" - }, - { - "id": "9b343cccc22162766d833c0d8e47c5df47b21ae2c300dc5292155da50e470764", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1046085548285194333336371200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218277, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zxndZ1hwonjl2QifYJC7JlQWS4fC37qcT4oiin2bf/g=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071160636543264656082206720", - "unlockhash": "c4a2315cd400e9a340bc497da7e83a8276c7bf25664990599093225c129ecb734054bfe8fb0d" - }, - { - "value": "1016997638387538473338798080", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1225739100764404167180550144", - "unlockhash": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3" - }, - { - "value": "3198593122142973928505606144", - "unlockhash": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e" - }, - { - "value": "2191928391498639376927162368", - "unlockhash": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b" - }, - { - "value": "2700832626531280162222243840", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1071105812297508727077044224", - "unlockhash": "01e9cc6ab9ced4a1a847036ddb5d7e6fe0621cbdbd9dfce26fc4516d11e8a674acd46d1313af" - }, - { - "value": "1061755219503759278820196352", - "unlockhash": "f07472e3cd74768bd64c1c8531d5da027aadac90556693bddedd34a9eb88f9211b8f94ab0730" - }, - { - "value": "1045106307809731301319639040", - "unlockhash": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0" - }, - { - "value": "1380129637613927796418019328", - "unlockhash": "27ed6cd297386c4f0c472035fb9b83c9384612f5f12ecad84226ab9f7abebb9579515083c6cc" - }, - { - "value": "1057537932571177414454542336", - "unlockhash": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8" - }, - { - "value": "1192376719752148311139680256", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1101083437842486052958830592", - "unlockhash": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d" - }, - { - "value": "1029468385251679340344639488", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1108627845865210205288529920", - "unlockhash": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb" - }, - { - "value": "1107653244844069311036260352", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1181427162652681969775673344", - "unlockhash": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3" - }, - { - "value": "1047665304139179039410225152", - "unlockhash": "9bc93c1aa496c8b97114a2eee2483e75af5f2c88c474b27307d339041f969087f29c175c4b19" - }, - { - "value": "1174235220043559056116285440", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1150565663486321370666106880", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1151397588290881942190030848", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "4266297870402601401987366912", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1148598318086260165271617536", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "41886395850374112743044153344", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1068624685988467949729546240", - "unlockhash": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d" - }, - { - "value": "5017823329671785054436589568", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1248583195381423021781680128", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1081471528253314543357788160", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1052192188945197903167586304", - "unlockhash": "9a8b59f0ef65cf003b697fc3a4d5e608c8dc7fd95dc9c6b202e504b61564cadaa4e30d0f3330" - }, - { - "value": "1938959001101607446712942592", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3268650708935181308348334080", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2182161843716267754379018240", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1025202959629405900360384512", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3820915662368056334748745728", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1005949053210405015207673856", - "unlockhash": "3bba69c5bf5d5a48f00a423f2711947babc5a9c5da2bb4f358c9e328d71dc63d0308643f8d8c" - }, - { - "value": "1048148987141314238991826944", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1098616007466258046068457472", - "unlockhash": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375" - }, - { - "value": "3861267407361119932586655744", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1062715234779166641997217792", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1053339951058698486201253888", - "unlockhash": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b" - }, - { - "value": "1072573686988478133827534848", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "3823356852223040061924442112", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "18198081925593475380993327104", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1891535660134369320802189312", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11263438707394770798026686464", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1105236158924096594870534144", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2912421435067960091385790464", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1193825020406170004301545472", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1389267036158522974219010048", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9550376174234568500017364992", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "V5P8c1+JEBOw/0Ko+4TMN1pbCjyku8LrPkE6ojRR7NBxM03hQJyJ84XRFaLO96KwDWQ2rDxF+a9Vgp199RhXCQ==" - } - ] - }, - "transactionid": "09f9f560b41bab448884e721e374dedb77281ad0e81a950b448bed978eb68b99", - "confirmationheight": 218141, - "confirmationtimestamp": 1564492165, - "inputs": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "3dc14f1828f5441620fb9d83e8a99bb5b8bef911811fb714785fbc6329b0bca81e8818b1ea8f", - "value": "158801653438828517630019534848" - } - ], - "outputs": [ - { - "id": "f4d684644faa6bf900081800d586239de5b9114f7b57d47ad9e9c365f1dda275", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c4a2315cd400e9a340bc497da7e83a8276c7bf25664990599093225c129ecb734054bfe8fb0d", - "value": "1071160636543264656082206720" - }, - { - "id": "a731b295d3f862e25b4a039e10d1f301aaca36552928903ba7204e75f3dc604e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1016997638387538473338798080" - }, - { - "id": "8efcb620d863640da993f53320957d81aa19351ac05c11ebd73155a4951b048f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3", - "value": "1225739100764404167180550144" - }, - { - "id": "c67af7ee42896928f00730b7b035a48f87275c9f78dfdfafac5991512e60aa69", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e", - "value": "3198593122142973928505606144" - }, - { - "id": "b5f5856222ae62fde62ba83d28f6b9c183eb03858a3774b8c11ed38665b69f54", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b", - "value": "2191928391498639376927162368" - }, - { - "id": "04d8ef23146b5becd955220f51d1cb1159606461c9323718bc7925bf78c0cd28", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2700832626531280162222243840" - }, - { - "id": "ea0f0af1f770fe881125c70be7fc09fbea895ca3dae2296a9059ee6457e0842c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "01e9cc6ab9ced4a1a847036ddb5d7e6fe0621cbdbd9dfce26fc4516d11e8a674acd46d1313af", - "value": "1071105812297508727077044224" - }, - { - "id": "89862d22c4a4c6f59691904a1b1a7c2b40ee204db716b77b913d86081c9fbb4d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f07472e3cd74768bd64c1c8531d5da027aadac90556693bddedd34a9eb88f9211b8f94ab0730", - "value": "1061755219503759278820196352" - }, - { - "id": "f430a3459f3c32583d61a0076ac0a01ffeec340d88bbd61bc3e613c5b7ef100b", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0", - "value": "1045106307809731301319639040" - }, - { - "id": "9b16c98866d1e37984bc3e51dfe6f720909cb6e0f68f258c99d03976cdbb6794", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "27ed6cd297386c4f0c472035fb9b83c9384612f5f12ecad84226ab9f7abebb9579515083c6cc", - "value": "1380129637613927796418019328" - }, - { - "id": "e932ecd354743a9c6b0ca94bb045a49ed905fd7cb5b2c1c7ea65df6cb80eb41c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8", - "value": "1057537932571177414454542336" - }, - { - "id": "5ce2909a0b281f25d9cf1457be6f2f0420bb90b81c0170ae0fe0eae27dc07e05", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1192376719752148311139680256" - }, - { - "id": "d7700f60f77cf0b050bdb4a260d08e749d080788af43e936e182cf078d55e581", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d", - "value": "1101083437842486052958830592" - }, - { - "id": "52045c89e8ce72431bced5eaaefcd9dc191616b07fa220b5c3ce37b9846e5725", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1029468385251679340344639488" - }, - { - "id": "e5b960a99b03ecdf3c6fb51291e9fcf00393f4220e2c12e952b1e14b6a05b4da", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb", - "value": "1108627845865210205288529920" - }, - { - "id": "2a13c0d032ac4daf8373f76b3f26600efb51594d9c7818681e86413549a2b302", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1107653244844069311036260352" - }, - { - "id": "68daabacb946d5ec2fad1499024ecf7436d00c43bd0f462a616e8a012e595bc8", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3", - "value": "1181427162652681969775673344" - }, - { - "id": "ae2383e7d3642d0501b3c6f6b83e84bcfc909843e6a8e49170d455a7e04f5e5a", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9bc93c1aa496c8b97114a2eee2483e75af5f2c88c474b27307d339041f969087f29c175c4b19", - "value": "1047665304139179039410225152" - }, - { - "id": "46dda260ac8eaa45bc1cb480a1c4592946fde938b697a9b18aa6960f0b9ffd86", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1174235220043559056116285440" - }, - { - "id": "b9213f3c74193638de215d351244d25b915693892fde6146f745e472dea7d346", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1150565663486321370666106880" - }, - { - "id": "dcdf6edb373519a7e248ed7bc0d3f3d791c60a321e7072fdecce3b878fb1425d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1151397588290881942190030848" - }, - { - "id": "bdbf8c9250ccff60a1d1455c58b47e52630d23dea5023c23055c250dae2f257e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4266297870402601401987366912" - }, - { - "id": "38be49c585ab2a1f9dfac0886148c12badf586048ba81232a7948838c1d19589", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1148598318086260165271617536" - }, - { - "id": "4a45d124588e2ef899e2e5feb135c97d2e5f0f0a7e49b123a6ce8c3852ba31d1", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41886395850374112743044153344" - }, - { - "id": "6ffc89c69408259e3696704a745321456428047d065078a382181e0f4ea7097e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d", - "value": "1068624685988467949729546240" - }, - { - "id": "cd2c5b63ac65e757db995bd75b930a1064ee978534c93865095c55d8b389e025", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5017823329671785054436589568" - }, - { - "id": "d8c1da54bed015bb14ab4f9a24d6d163b4ec3f73727aad8b1d6821a4bdab09d2", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1248583195381423021781680128" - }, - { - "id": "d9f7784d7ae603b8f2e5956883c99621d0a5a6acd3bfa1b5171457dc1b1b5d9d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1081471528253314543357788160" - }, - { - "id": "e6eac8ae75e0e1e4601900047a23cd92451e7a366fb77167b2f3fec8518bd07f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9a8b59f0ef65cf003b697fc3a4d5e608c8dc7fd95dc9c6b202e504b61564cadaa4e30d0f3330", - "value": "1052192188945197903167586304" - }, - { - "id": "88d0874ce581bfe80e460d5bd455c85f9ff83d92da75f20a3beeee9694b006c3", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1938959001101607446712942592" - }, - { - "id": "18ae70d3bbe7a5a471f72ef8a9ea875eae33c0b08aea57b74467437385b4e560", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3268650708935181308348334080" - }, - { - "id": "ff2812a4590602dc509787fb20706665e805ea0a1d0748ed7483aa7eb4c3167b", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2182161843716267754379018240" - }, - { - "id": "496d56db3f89faa17374c8521f4894006c4029f5f7b7e92d10da01e8b4fe27ae", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1025202959629405900360384512" - }, - { - "id": "ff0d9a42f01df356bca5e1fd9692b5dfec3fa18de47da3eaf5c99b97a3fd2b8c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3820915662368056334748745728" - }, - { - "id": "81bd9a5740c10860455d7a72f7f9a67beea62ba30f8869cee3eb88fad04b15af", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3bba69c5bf5d5a48f00a423f2711947babc5a9c5da2bb4f358c9e328d71dc63d0308643f8d8c", - "value": "1005949053210405015207673856" - }, - { - "id": "d055d9513b811586f0afa5bbbbf4f6224a81b3044e961a0ba5d312f6ce38f0c6", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1048148987141314238991826944" - }, - { - "id": "150c409c83d1bad206a7cf0c601ef5ad3b7d27c7d6ad31a98548f57f8d127a91", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375", - "value": "1098616007466258046068457472" - }, - { - "id": "265c5147c4be6e9a5b8dc4159ffe33b81e8a4adb6b20140cf07546b19a3dc92e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3861267407361119932586655744" - }, - { - "id": "f19b96afb0675adb9846bfd5912a666f922cec71c439bbd252d5830d414a0904", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1062715234779166641997217792" - }, - { - "id": "81cd64628bd465d2d1d97c468de7b8cb0bf6e02e947f0694488eff516ff7c0de", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b", - "value": "1053339951058698486201253888" - }, - { - "id": "b29cd2ef7ff595b9b642ecc4f72591ff9c83331bb18fe88df303996e848bda23", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1072573686988478133827534848" - }, - { - "id": "ece68d22d598e33875501824d22f81526f39e0133dfaf1e793b0887ff1cebf46", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3823356852223040061924442112" - }, - { - "id": "c27577749a969f05727439f57755fedc6c500a0e219d64a2f4fc5e4f54f0a803", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18198081925593475380993327104" - }, - { - "id": "0d7992f2c5e004e18bcacfac71873eabeafcf219741f055fc6739c528e125e75", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1891535660134369320802189312" - }, - { - "id": "51a2d1ef8203cfc3cc25526503834e3ea8acfb5be4291341c95e5a83acaaf0e5", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11263438707394770798026686464" - }, - { - "id": "0347cf9600383f2b07bc1c21cc87a98570d3228c050eb82d232afaaf59fb50e6", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1105236158924096594870534144" - }, - { - "id": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2912421435067960091385790464" - }, - { - "id": "ada59fee4a4dc83429159e580ba403f3e505717b8b966a0412e91af48ad7f8a4", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1193825020406170004301545472" - }, - { - "id": "95fe43a683a0ec8e6b1c405547d2ac6c2044ffcc031e8a98b5dfbf0898ee4dc4", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1389267036158522974219010048" - }, - { - "id": "ecf28fe2d0f92da95fbcc27803ea679511e1fd8d2b27bfa74c36b128e7eb555f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9550376174234568500017364992" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218285, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "JzC6yLePKdaDt0KzHzGJEbb2YoMEe+khznKouG4/fb4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1110206881468425978654752768", - "unlockhash": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770" - }, - { - "value": "42165424696558899438049820672", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1201176352078592734864080896", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1241574752154124692052508672", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1816551693838024369057562624", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1699212714979064308954038272", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1038301828227630782458888192", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3235414236472949114222411776", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2240568149393019716702830592", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1038043924610462152963129344", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3934928092898558241675411456", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1439337281495486009182257152", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1226819373526985454957101056", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "3820884865182965538335227904", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1226821645644188531665141760", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1004451976771542895957573632", - "unlockhash": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d" - }, - { - "value": "1338014971084714900606418944", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3863532573249455363960340480", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1160409049329047627739693056", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1468653015561645799698857984", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1127177537315115736176263168", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1714861162419630144972914688", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18765409683826359068075753472", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1025640312284402150843351040", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11495570538814295031058268160", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1114704056363151759662645248", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2948827743243064753510154240", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1044755545130162395649146880", - "unlockhash": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04" - }, - { - "value": "1205838389900630170712145920", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1446006423718073891265970176", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9890804837695473921516634112", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1002009304874221459840434176", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "1027880515407251080458928128", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "1119645551673784001143242752", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1017108436951120399181283328", - "unlockhash": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0" - }, - { - "value": "1113557718804747159384227840", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1231817552925784193182466048", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1037630820096147722051387392", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1443479476254145327355920384", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1012685359995151851082809344", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1028007149007996251043790848", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1976611925203313093483954176", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1683835565882424624824713216", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1061775339933759900370501632", - "unlockhash": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0" - }, - { - "value": "1039323952808849451635179520", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1123019477995315940667424768", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1075305186963165410935701504", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1014162182871062182190383104", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1010995731362136819702956032", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1013905463444253935208923136", - "unlockhash": "19199c41f95e3f603f27ef61e839d4a42d5f2710e228e63eae20c57b1332c8e571520b606dd4" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Cm8FS/VFWXmbt8N6HPD/yb00j/24j2+7UmskOPbEiJw3Sj7S8CS4Iq00HemL+uNmCPY53qL7uXzhfFM/m0mbDQ==" - } - ] - }, - "transactionid": "6f36aa9328cb48eb7329898cf6d812b16e27655ceb4c89f8cfbfcc150f0282af", - "confirmationheight": 218148, - "confirmationtimestamp": 1564495845, - "inputs": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "329c5bdb431914963f423b430ddd460cb96564f2aa60f267c0a7285df4f8b5eacf4bb37f4176", - "value": "151082921017690773478945521664" - } - ], - "outputs": [ - { - "id": "b2921fa0cbf9b4a549312685c13f478cb5fd5236f044a4b13aa289b7b04b7d30", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770", - "value": "1110206881468425978654752768" - }, - { - "id": "5f20b98e41989eb2749a93cb9d2e0a0eca037997d1e2ab98c3d5f616bda33ea3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "42165424696558899438049820672" - }, - { - "id": "cfeeeed31efd8bc3fd68780eb44656cc7825c1afb295a4eae240b5172c4fa62e", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1201176352078592734864080896" - }, - { - "id": "da7d224834c58e4cbcc7d22a8df9bb21340253bd89d911056e4270f365a520e3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1241574752154124692052508672" - }, - { - "id": "1e88946401674a10d244f3305fe28d5e8466019406406802f7d840689ca42c87", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1816551693838024369057562624" - }, - { - "id": "0200445d4787bf9de208842b50a73832b82875b2466d87cbf629bbd168105d99", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1699212714979064308954038272" - }, - { - "id": "51e3df6132cee27cb5f6d0ae259d0c1e8117e9bcc0582188b640a3bafac450ae", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1038301828227630782458888192" - }, - { - "id": "53ed139811cb0784dd5cb16b772f7fa93c5c11f3a362ebd107b7bc9d8dce48d3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3235414236472949114222411776" - }, - { - "id": "07b467907f575fd193f0bf51c5d38ad7dfa6395f8b699a7108097016e55b72f6", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2240568149393019716702830592" - }, - { - "id": "d4354b66ea7d93f29619e3b48443fa2fdca5444a8e755384ed4f26405276fd37", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1038043924610462152963129344" - }, - { - "id": "f1586a183d625ec7768666a1b4e711229c65c0d1b87530c5d9dffe0011eacb5b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3934928092898558241675411456" - }, - { - "id": "5ac1e1d8b2487df099258584b0e0e79a3d1f9a052a8a9c76910cbc4f24e45802", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1439337281495486009182257152" - }, - { - "id": "20946d2c72ebf7ba400652caea6c2834363e73ddebe7ad08cc0e505fabe87625", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1226819373526985454957101056" - }, - { - "id": "0066a5e54651f7f427f902b313f50f8081233453f6016695067a79a61c2f989d", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3820884865182965538335227904" - }, - { - "id": "3ec59f076c5811746dacb730ac757bfba6e9362588de9b5ae9f14d2a4e1e7795", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1226821645644188531665141760" - }, - { - "id": "13a4d2375669c782c5ec28cc675df9ab55dc23d3e0511051420b0c620f49d74b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d", - "value": "1004451976771542895957573632" - }, - { - "id": "70072268eaa0673a2baf1e0ccad70a1ec2dc26dcb56dd8b858f79d91569a4838", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1338014971084714900606418944" - }, - { - "id": "90bb875b5703c263752493bccd54504975599f6aedb566a6d573853b55f1e954", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3863532573249455363960340480" - }, - { - "id": "6015caf0f43ce333a674aac145a29793686b67b7871b5ed1c71ff2a5fb03a0bc", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1160409049329047627739693056" - }, - { - "id": "d9a7fb5def9bef0e9273f4265a04a3bbc99331edc9df483fe5c7a25dd588e009", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1468653015561645799698857984" - }, - { - "id": "ae4f9f8ca0d6c26a8d25ae656f135588b90235559ab728f03197f0a725cc852b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1127177537315115736176263168" - }, - { - "id": "180bc1aeb3737d0dd98ff9db69dd12469058f075da0350303b9d9b135e5e3fcb", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1714861162419630144972914688" - }, - { - "id": "ef6b5d3006d68f882381650ac14bbb43ae2d80a29f840217bc9d89770ed23788", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18765409683826359068075753472" - }, - { - "id": "754e245831c8ec2e857bfda4cf31209d08a4f21de38530d573451c416effce7a", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1025640312284402150843351040" - }, - { - "id": "d446f6d89f2d81c64ac780cdf22f672ff0daabc30da74b0cce38a6161637bd5c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11495570538814295031058268160" - }, - { - "id": "c973c64a063397ea312b1ed2faf18423699217533360602b3551affd402579c3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1114704056363151759662645248" - }, - { - "id": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948827743243064753510154240" - }, - { - "id": "a8562ed63c63110047fdd30e5cbed7b82f7ebcff60bb8bc0da6dbbfc6e8cf16c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04", - "value": "1044755545130162395649146880" - }, - { - "id": "69603e94d4afe6cee07ffa67d8d6898537f69b39fe1f54109fdeec3c25c68c0c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1205838389900630170712145920" - }, - { - "id": "8eafc3c73d57ce510968ff01c51c5f815db55b57c060d91d23251695d743312c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1446006423718073891265970176" - }, - { - "id": "d23ed4cf3ea039f30cddfe947ad5a6ad3ab33c207a5e4cc978f3f99a0fcb4172", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9890804837695473921516634112" - }, - { - "id": "b2df1f821fadf07b8a4bd71ef2aea31923e656badc7da4cf0d155686b31c0af7", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1002009304874221459840434176" - }, - { - "id": "9cc742f8a6dd4dcea96994bd0641b48a31989dbdccb97fe6f671c0bb7ff68a2e", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1027880515407251080458928128" - }, - { - "id": "e7ce0baccf74b9da48761e0e1cba2986e75a48bd8b3dc8c89088a9daf7606b42", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1119645551673784001143242752" - }, - { - "id": "901d6301edb8d0816f9a733e3d61921930cd9ec281593d7c4a8050f1c4d52dff", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0", - "value": "1017108436951120399181283328" - }, - { - "id": "05233611561afd628ce85fb697a273a018304eed1dccfc480130c986832aa733", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1113557718804747159384227840" - }, - { - "id": "2863e7962ec1e37b29594462588804ab8cbce58ef4070831d93cb9c61ce23baa", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1231817552925784193182466048" - }, - { - "id": "d1b5b85228cb8dc96932cbc898c105966edd688d55e618c771c20c9e5178f439", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1037630820096147722051387392" - }, - { - "id": "f4892f478d16a23d05ff9a9f1a463650f3af9e5c185093512a8150e20372f02f", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1443479476254145327355920384" - }, - { - "id": "e89baabb0827156fcc74b2398fb88187aa6c58f1dd0b1c05cba571cc58484bd5", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1012685359995151851082809344" - }, - { - "id": "3de60c270b3b8ac589117d908ff7f98f8db3f4b09aefccf3744e974ba2ac0cae", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1028007149007996251043790848" - }, - { - "id": "73bc8652712b01580d7c53706964b02b5a1ffb4c84269bd1bab1970859bd8db7", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1976611925203313093483954176" - }, - { - "id": "0a2a6aaea0e216588b78c3514eb27ed446f89fd8f73b1fc678b121097b4c390c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1683835565882424624824713216" - }, - { - "id": "8aa4ddddf917d26f43017cbab414062e7c3478501a588659cbce62747227e84b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0", - "value": "1061775339933759900370501632" - }, - { - "id": "4b3d24a004f8dd4ef4de7e40290e5a78a0960d02cdd88d8ee5056943d2dabd53", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1039323952808849451635179520" - }, - { - "id": "a3342add2b4ce9891aa538834d4fc47ef0183f29cf90c36a1b85827dde91018d", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1123019477995315940667424768" - }, - { - "id": "58bfafc8d27fc39786776ab441843119da3dfba7d4abc975b7369f8533029778", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1075305186963165410935701504" - }, - { - "id": "1e10fa8bf503c00bbc6b7190d2e9222f3c8e9615192b0a2b700c139956edc49b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1014162182871062182190383104" - }, - { - "id": "168881e1f4ad448b71d9fa5886243ab7b66081361ee82996f3d9a727e9769077", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1010995731362136819702956032" - }, - { - "id": "277ddfd73ea0cf90c5a1ccc428ecf8e865ac30f219976c72cd60ccd8de15ede6", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "19199c41f95e3f603f27ef61e839d4a42d5f2710e228e63eae20c57b1332c8e571520b606dd4", - "value": "1013905463444253935208923136" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218292, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Z/ip2JjxMTf8lQ2+VfKQMZVUnnwbaMrZ2UUtkTjAXu8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1055405816576638355856818176", - "unlockhash": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9" - }, - { - "value": "1018219709985862986487431168", - "unlockhash": "ab023065fd79b2e17520535ffb14d34ec70a0ef0d79de5ec99b46f13b12221270ff01b1391e1" - }, - { - "value": "4893368623885923001883951104", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1146133212539413782851485696", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1012653015108945540246913024", - "unlockhash": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc" - }, - { - "value": "1316825142815521360965009408", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1001841710375431137905786880", - "unlockhash": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29" - }, - { - "value": "1332969949140630643315048448", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1008929133948260390246023168", - "unlockhash": "01479de8b9481d4bc97788f7430a1ec4432b8e8a5a10a9f29c4885a624fdcf09ed050f1a9b64" - }, - { - "value": "1149167605567830791286161408", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1908543865727342253654933504", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3293087730598892404811497472", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1122958780110194777384812544", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "2136541899365715622781517824", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3794184106458407257077972992", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1237578790308311142063669248", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1098358047428224033624686592", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "3582757644258132281104793600", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1055531877853760682519429120", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1308319616968894309952651264", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3766730614087342789517901824", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "18178502001004305130813652992", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10853957301075097231351087104", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1005467042278728078209318912", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2718360009967921243757740032", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1163493030018786815654232064", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1355304730035576923460993024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9425247963712353321179152384", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1005252607016734850552725504", - "unlockhash": "b5def467ebcea8b002e1831a7e581af23980c79c27a235138b1862da710b9e768931cfb255f1" - }, - { - "value": "1238622496660744487253835776", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1042254564237524494135853056", - "unlockhash": "6518009759da8bfdda4c657bfd6a7e27cd0d67cd81e6fafbd70c486cd8a596c0de366069e700" - }, - { - "value": "1074988817210231013273763840", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1015927314128149468286418944", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1069489135678843531775442944", - "unlockhash": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806" - }, - { - "value": "1101264161370991974376800256", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1119131399593728760240144384", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1046438154270390005185970176", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1006613004813807509149466624", - "unlockhash": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6" - }, - { - "value": "1281503224963736416082198528", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1848788170105921784787238912", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1033285360588524357953781760", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1193278822592791626154770432", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1217258967546194392445353984", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1001837777307318911532793856", - "unlockhash": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79" - }, - { - "value": "1087391974987801579189436416", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1056858932058454638405828608", - "unlockhash": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf" - }, - { - "value": "1037745353667145505538048000", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1064611062621202194315608064", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1044882115011611563627085824", - "unlockhash": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1" - }, - { - "value": "1156914233135541746316869632", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KdiTDqtX4CajEyMVu6+NqSykjm8H41qvEhCwy7e1ag3CwFRCFBFTUGTyKgJuqf5B/XVN4jFHa167z52Z2pwSCA==" - } - ] - }, - "transactionid": "5db74f470878f5834a5ebadb636392dbcaaa26ae58d87b6beb2fc18b0a62cf97", - "confirmationheight": 218155, - "confirmationtimestamp": 1564499433, - "inputs": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "0e210d59a27dddd2fdc394a33414c0737d02908696d7882ed5e6e0707e12486e83548284ac96", - "value": "108685016620769835100544106496" - } - ], - "outputs": [ - { - "id": "b96e33a43c210cacf5ff5b8c89a1f496ca89fd5280fdbf5b442d389db17fcf9c", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9", - "value": "1055405816576638355856818176" - }, - { - "id": "3251e4234ae7f550333d7dd013bf3d3883272607c325a27bc87cf5dd12668a38", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "ab023065fd79b2e17520535ffb14d34ec70a0ef0d79de5ec99b46f13b12221270ff01b1391e1", - "value": "1018219709985862986487431168" - }, - { - "id": "106056d3bae025333d483c9d715362dbb5f498613a546e2d7475685fd1d1cb69", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4893368623885923001883951104" - }, - { - "id": "a33b428069da4bb8f405752c9fd8b4cba5e906a5f6f9857fc90338ba9501baa7", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1146133212539413782851485696" - }, - { - "id": "43da7ffd4356cfc7af4618b1d456f85bbb416c87e174a407bea548c64c4621db", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc", - "value": "1012653015108945540246913024" - }, - { - "id": "1bc162855c019f84cab1c1548a317a018b54698e41aa8922d5e19f64ebcaa8e4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1316825142815521360965009408" - }, - { - "id": "c934c0dd8a6730bdbadc584164bbc67c2b588196bc23105a89f92ad8cc3a11ae", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29", - "value": "1001841710375431137905786880" - }, - { - "id": "24a40fc7ca8858c55bcbf7676128f274824e58e736c4befa959c16b1d4a6f764", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1332969949140630643315048448" - }, - { - "id": "b8e1636ae1ff770202753af54f2f0f35a8969c8b8c444df2a9452008b6f6cf59", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "01479de8b9481d4bc97788f7430a1ec4432b8e8a5a10a9f29c4885a624fdcf09ed050f1a9b64", - "value": "1008929133948260390246023168" - }, - { - "id": "a1ad8577666834bd5e6f556b90ddc45de53fdbfcae71902490c4565f94d661d6", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1149167605567830791286161408" - }, - { - "id": "5319b80b4e6e6a9d395ec61aa17f00239959fefc3e76514a9dcfde3af7a5cb53", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1908543865727342253654933504" - }, - { - "id": "6a6f53e6547217f8807352e795f9c60e86e557ab1ed3b8370128a9cbeda42e51", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3293087730598892404811497472" - }, - { - "id": "2d6479a9459d320a895bd56208acbc42c8f1a1e20d5c765c15fc8d2817edc607", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1122958780110194777384812544" - }, - { - "id": "19291dba04c33fa8c26f8b42c8e3d0479a1c972f951b75f8b76c1010bb7b6226", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2136541899365715622781517824" - }, - { - "id": "63d9ad53d556b63a63fca6186542a50e7e28d04db47efd8f48168ebff03a33ac", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3794184106458407257077972992" - }, - { - "id": "85636090506d92070447ae59b7e23787595d8a3e6c6bc307ce2452d1ece8aa6b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1237578790308311142063669248" - }, - { - "id": "b1f7a7836154ee425d82526e991a3b127e31f199a483a268803a2f3fcd2bfcfe", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1098358047428224033624686592" - }, - { - "id": "50ef2460e675442cfe98a36218acd9fdd2b2c19381f74986b3009c9203d5f77a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3582757644258132281104793600" - }, - { - "id": "10cbba34f091c81b9f9d43f1755f4b0f18c8e4d6dbdf9e32fdc2ff5dbc17a46b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1055531877853760682519429120" - }, - { - "id": "0299754092054985ae77da0f7c237cd7bbff643ca3b579c4b67e717ae491267a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1308319616968894309952651264" - }, - { - "id": "d3f3ce26702d0386747dda0569079bd4baea2045310dd0f4d28f2251faabf5b6", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3766730614087342789517901824" - }, - { - "id": "073c1aa63711ea5449c7599ca924d6b4f9f50b5bd986c86b2dd69ae0edf06c41", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18178502001004305130813652992" - }, - { - "id": "1cfb0cd989d38ade1ac0bf106f7a70f4cb518f5508fa293672f48ea51eb60722", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10853957301075097231351087104" - }, - { - "id": "205afc0cef0d655d55e0f97ac2eef355a55113605dc08620ed3c50c017be2f16", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1005467042278728078209318912" - }, - { - "id": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718360009967921243757740032" - }, - { - "id": "6c40d5808f8242ea91762d51b689127a90bc4601f67dfd1eb60ad5a506355be4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1163493030018786815654232064" - }, - { - "id": "876397ada6680a188b579fe497cf9651aa005696f8829ec6be6cdb724c77624b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1355304730035576923460993024" - }, - { - "id": "eee9701f4de7cb64fc08dea0f56aca0632a8b466a995cbfa9affa83b4c352a28", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9425247963712353321179152384" - }, - { - "id": "b9c839ab5b760db6ce28e8adb269f72fb71c9451bf0cf512980d042083baf5ac", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b5def467ebcea8b002e1831a7e581af23980c79c27a235138b1862da710b9e768931cfb255f1", - "value": "1005252607016734850552725504" - }, - { - "id": "7f0fc424367d6d2b14613130ce22f0784c2e486c5c1166e3fadf07cb86a7dd4f", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1238622496660744487253835776" - }, - { - "id": "c923c662b23a67a9ad3c92776a6e2ff55d540adf733995eefc0096ebf09dff0a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "6518009759da8bfdda4c657bfd6a7e27cd0d67cd81e6fafbd70c486cd8a596c0de366069e700", - "value": "1042254564237524494135853056" - }, - { - "id": "39b1fc39becffa36a3c248960d31dda557ac0697cf0dae8f41c70d76ecfb820e", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1074988817210231013273763840" - }, - { - "id": "48decd154e43197d87e45872b77c3a76de43344369362f344dbf9cd13367baff", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1015927314128149468286418944" - }, - { - "id": "26ec6ff0ba4e1ffcf3733af8a0ce6e210412b4b2376cf7986c72eb7782e7a5b3", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806", - "value": "1069489135678843531775442944" - }, - { - "id": "348c5ea79cbf5b85301939b9d40a5bfe6b4756c00ded25e73b37f68a153fd071", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1101264161370991974376800256" - }, - { - "id": "b0fccc10a65bbdb6889a3e318cf5e68d4d4e5662e68c703f102bd418f2745c8b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1119131399593728760240144384" - }, - { - "id": "cb611e191b0af6a732689722f00bb1a4e30104db88ed5b7309977c31095370c3", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1046438154270390005185970176" - }, - { - "id": "ca9c93ae6092f02f210dc8264b7b461b1d1fe0578f3d64e1a5e7c9a141973c67", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6", - "value": "1006613004813807509149466624" - }, - { - "id": "00640a18ac2911b9e578175535ec6d3d93aaf72824a68de2b3d2a217dd2f98d4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1281503224963736416082198528" - }, - { - "id": "545eab99a898777304c7ba96a6d2f7b34d862ed5088c9b145ea69e6aca341f1a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1848788170105921784787238912" - }, - { - "id": "76a442463b4153bd44b09a2811553fceab3b15ea54915f7ad44466d62d8e9b67", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1033285360588524357953781760" - }, - { - "id": "a0639fbee216f2c67e013c0f495b9e5eaae5dc90877a9ee2e7a3a3219e4a697f", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1193278822592791626154770432" - }, - { - "id": "90ffd6776476f1b154f5bc644076644cd31f34e72cdd9b1049b5725a23f1c3c4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1217258967546194392445353984" - }, - { - "id": "f27e3e7188b2e64166103d6260a35a54359c094b9a9c932efbfae22f63366af1", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79", - "value": "1001837777307318911532793856" - }, - { - "id": "ab8ebe38d62bdbacc0250a7c9eb39726d1445ccab18661a2e3fdba884dddc208", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1087391974987801579189436416" - }, - { - "id": "701a244e70cf9b6a4c2efdda0782d1ab457845be84b32b0da4d999a7dd973ced", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf", - "value": "1056858932058454638405828608" - }, - { - "id": "e969d00deef7a0234069ffbff762d10692ebeb255a96daa11699fa45159a8d11", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1037745353667145505538048000" - }, - { - "id": "f68b49fb1200b94d0bfbd510bf56ad7775c2efa21c321c3a0f04e6a584885888", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1064611062621202194315608064" - }, - { - "id": "acc84189241f69fcd323c33d81557bae5ae8f9223a3f7b333f652d47a3991dbd", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1", - "value": "1044882115011611563627085824" - }, - { - "id": "6db0c9211939b7e8da126cb4c4d27d6cb8ec4d8501e1d30a40f35a5264eb7983", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1156914233135541746316869632" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218299, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "71xZ+XbgU8fXgPrNpdPFuMpzi5Pe5u084Cc/vIAj5mc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1011935799697321324168511488", - "unlockhash": "7e89f6b6c8ef9783f914a88c8364a068c614418485254609dbe8896221770815a14ca20fcce5" - }, - { - "value": "1090368775388451690683498496", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "37965727514296598039942397952", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4733239865414433023731957760", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1088813591116661420411846656", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1043592877684148098300641280", - "unlockhash": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c" - }, - { - "value": "1701003486126217511806435328", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1568644022517849651956154368", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "3151076475422297164462686208", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2008191788962486779281145856", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1892879230784990880345358336", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3501500223930558046380490752", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1237060621925777528017125376", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1031689588666059452350726144", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "3389636914840160055641243648", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1042036443346836301694238720", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1103075090531415892767637504", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1157830357216368517753864192", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3478594268845826360010080256", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1636047347011343842944221184", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17297207164344531950369767424", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1854863517379297697821884416", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1005337541277031333923389440", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "9882317906971850971736440832", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2501662376093900483317465088", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1107860954266315981718552576", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1282056507853257963435196416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9148481984811439102057512960", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1035756740931787642815905792", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1041096058505191371584094208", - "unlockhash": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87" - }, - { - "value": "1093203973906419186821300224", - "unlockhash": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc" - }, - { - "value": "1052671524223624650698522624", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1023789103598552473111887872", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1064768386901506205016129536", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1364134864227147612488204288", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1011050898017959812278452224", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1770222527341699463265648640", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1541642652254395394373451776", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1108958995201081605705170944", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1002135222559044973068550144", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1037185431443324387067166720", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1140443091409802961814028288", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1873086571793316044718735360", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1109883697774666611896877056", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1013547324825877055552749568", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1444908805135031604835516416", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1044866763884341432909398016", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1140581894580861084021817344", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1034291906344512452526342144", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1143734892382212570302382080", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Vn2tbqK0OxzHgfrmIVhvfPyoBED1ZhN2XlgO3eBBiWRlaGUPo/MPWcrd1kwMuv2YnzgHsxoNwvKy6T1Lu/zdBA==" - } - ] - }, - "transactionid": "f17d7d898f1c284c2b8b52e5625c2899b973fbb9e9c32bccd4622938d46499c5", - "confirmationheight": 218167, - "confirmationtimestamp": 1564503091, - "inputs": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "6986fffb85e29d11f7ac8d8ef1809c714e995c994d0beed9be428fb42a3f8434c823e3bc98d9", - "value": "145004933563965783663902801920" - } - ], - "outputs": [ - { - "id": "18b96560a6bf9e23eeb8d5d16c25e0e7c4084af3bf555aae3c81a36b830c542c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "7e89f6b6c8ef9783f914a88c8364a068c614418485254609dbe8896221770815a14ca20fcce5", - "value": "1011935799697321324168511488" - }, - { - "id": "687e6e88d4ff9ff4840abe2f6815ed72bc07ed441b4c1c57ad842823e6c267b9", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1090368775388451690683498496" - }, - { - "id": "457d46ac753a34894ff7d0a9727961ee616916aa6224534aeae3a52ccdb52e17", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "37965727514296598039942397952" - }, - { - "id": "bc81c8e82b584308518abd672cf5fabf84de7f4ac19dd5effc22f84975e6ec5a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4733239865414433023731957760" - }, - { - "id": "aea85c1cedfe0e5b275e0f345228b6011adf7f36cd37b7c8749775aec08ad5e1", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1088813591116661420411846656" - }, - { - "id": "6174d477c1400e6dcacbb5a5b855bb42ff503db790bd10cea0e5161de7794172", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c", - "value": "1043592877684148098300641280" - }, - { - "id": "e9414f75292fa9d1c061c6667c51ad7a525808de5c400e536aa20a992b511485", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1701003486126217511806435328" - }, - { - "id": "07c807cf22f0fb91a1300d3b6ba9fb277d318f5468c3a4e3e3ee6bbfd2930e2a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1568644022517849651956154368" - }, - { - "id": "11f496f74413c9ea05348f3f804f02c5222324f8a273f6af4313bc43286237f0", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3151076475422297164462686208" - }, - { - "id": "06fd5b80bdb4d942afe03d431143bf9116b58b43d88b0c8fc2e5a040d8ad77ef", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2008191788962486779281145856" - }, - { - "id": "4b8d98edfcd1c9c156574f1a74eb91249eb2b23c8cd05b5aefaf99ec883d970a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1892879230784990880345358336" - }, - { - "id": "1c621fb69d4a84c15e7c7a54845916637583f76a4163401d86baa4cf9246d182", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3501500223930558046380490752" - }, - { - "id": "03bfc5c97ca583701263ea9a76cf1763f8ca9b396562f86707e1e09ff922002c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1237060621925777528017125376" - }, - { - "id": "41ae2ad0a36428ecd15c7ea128b50e73f0f19eefb94af759c548448b1da6e342", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1031689588666059452350726144" - }, - { - "id": "1c2e24b7f0a9e6a5994dc07869f895c293375b103ace3c7de344d7a20e445c9e", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3389636914840160055641243648" - }, - { - "id": "f14a59c657efd8381d490d0040d0147c877e33475b7240702b531fb6bf938541", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1042036443346836301694238720" - }, - { - "id": "36330a3af0f259998611e09d6fe31afddc36076f6f913562462aeecfaf65c20d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1103075090531415892767637504" - }, - { - "id": "4c7a3e40710ed503972fd915889464ffc72d7bbf380e2fbccb89d5db1dd4f34f", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1157830357216368517753864192" - }, - { - "id": "ea2992a514d04605c95387749c80a19ea92a6111042434e1b7b315a441ebf97e", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3478594268845826360010080256" - }, - { - "id": "dcede26c9fb1391c75d318dcbdb98f1f34951d29d0a158fe953c672fbec0be33", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1636047347011343842944221184" - }, - { - "id": "5ded326651fe37bd783a67821d752c7f592562f2bceccf4b2364cb8c3f12d75b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17297207164344531950369767424" - }, - { - "id": "2a676e5a1797422843507108d478494fe066072469ee51e907bb343c8d53ca33", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1854863517379297697821884416" - }, - { - "id": "e63de3740c4b238fe75b80beeb6de2d267b86af4e42d5bbae7f2bc45f2702607", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1005337541277031333923389440" - }, - { - "id": "d849d9cc336097dcd968b29bbe997cfcff8247b36b2d2f861bd6edc2e546cd6d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "9882317906971850971736440832" - }, - { - "id": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2501662376093900483317465088" - }, - { - "id": "145fd1eb342689976db37b0390542ef7984b10f579830bbc3f2c4bca8dbd4cd5", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1107860954266315981718552576" - }, - { - "id": "5f5dcbde0730f388e744c2d319939566be337897fe4b0c88cd78aa146a4f2f24", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1282056507853257963435196416" - }, - { - "id": "427324ea917fc490fe15fc10781dfd9aedc8468da1e0d023ef83a49f03264a27", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9148481984811439102057512960" - }, - { - "id": "71035fad8f24b3a27c56acdaefe58f5c052ef8c6b2e9bd990dd9232afb7aebb1", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1035756740931787642815905792" - }, - { - "id": "6cea4d50a8124578fc13801c0f8fd6b0c576eb6dd31d8415a532dbc49a03cdd2", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87", - "value": "1041096058505191371584094208" - }, - { - "id": "ab9ccfc2b4bf049a4e8395e04be76a0d4520781cd615e5212fc7ad744f9e6c76", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc", - "value": "1093203973906419186821300224" - }, - { - "id": "4c88626727af82d9c17723d3aef7225e821f1ca52a0cae1bee3dff0510a936ab", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1052671524223624650698522624" - }, - { - "id": "c032bef5ba8320a8e8e3591b45290d852fbe8e0746c0e0310a6c20a23eaddbbc", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1023789103598552473111887872" - }, - { - "id": "c703bdc311911c9b9090f157add967f66f66db8ce4426341f527f9a17a6fed50", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1064768386901506205016129536" - }, - { - "id": "75df82b63c7feba224bb3d1a5f8ba038b77993321a12469c3af46118f0e87c2f", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1364134864227147612488204288" - }, - { - "id": "3cbbbc74615e3015e5e3d6b7fbb578b47b18b7089a07353d288752d4fe8ea59c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1011050898017959812278452224" - }, - { - "id": "8acf4d245a0a08940c2dbf1be0869d57b48da83f92b8cd6b7cf87ee071f856e7", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1770222527341699463265648640" - }, - { - "id": "371e44e3776728a23631cd72f3fb86f9b867d23c6a563cac3d69ea4f02b3aa69", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1541642652254395394373451776" - }, - { - "id": "4382b1cf4271ec266af44ec1f9d9fbeae6fd21b22f448a63326393019467e6e6", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1108958995201081605705170944" - }, - { - "id": "212ffe07052406c1754fe9a4148452b80e4bab9d72d154853ee84770ba9d07ca", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1002135222559044973068550144" - }, - { - "id": "1574cef0a605cd4f2b91c03fbadb4bfb55b6867fdeb2010df782cf0e5415a83b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1037185431443324387067166720" - }, - { - "id": "834701422caac2a41649c9ec01f8cef814bbe01b8763dcb324c36132fd4f41ff", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1140443091409802961814028288" - }, - { - "id": "12dba37291166f710714db04720ad0d73a26830a242eef31f0be0bd40df646a5", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1873086571793316044718735360" - }, - { - "id": "9175d9cd94d65b9f6a7032c4db0b0898b67c888c2b43c2fb267e6704b16fa977", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1109883697774666611896877056" - }, - { - "id": "642cbfd86f5428123cc33b8211528cb5b4f9b8e648680a0d05143f48a7d57d32", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1013547324825877055552749568" - }, - { - "id": "0efb059cd5b18884a52035a7343c394857e63fdccb8c80b5d4771bff365c8b3d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1444908805135031604835516416" - }, - { - "id": "3ac26f2f1f6aa811b293b03b4c11902ed4b7ef667addcad466b5ad6091d0a7a6", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1044866763884341432909398016" - }, - { - "id": "099a49b1401124adbe84a4bb5d490aad55e86fc20ad6fced5609a150f7db7a4d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1140581894580861084021817344" - }, - { - "id": "0a49972d1ba04f8aff445c9440316387b0a9ec8af95b54f906da77e026252096", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1034291906344512452526342144" - }, - { - "id": "9040ed3b8ee0d89596216a5b73320fc47877c3bdb7189450f9c267fdc6218f9b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1143734892382212570302382080" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218311, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Br2xajTq3aXRPdMJy2BY/X50hI0aQYbSk1NeQ5iu1uk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071427752058045537676427264", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1833687755922912212561166336", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3225824949199461641338486784", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2094390331469441359270641664", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3833711659533378673935646720", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1401972127014063505889296384", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "3625395475998585459000213504", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1011810607716945807015936000", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1207944176978929872346808320", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3500217464152389453504053248", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1057128892525477062709870592", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1393745578986345480933343232", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1061275724271989444740907008", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "18472049732086311721021472768", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1262005903837310296537694208", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "10558807663073043309947518976", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1906190744775911892775337984", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2515733323140156357481594880", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1053320509622218580786413568", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1141155425115269549227245568", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1340917229544456799425396736", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9333447933808113289537781760", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1282223064687862020107141120", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1030609287813690303118639104", - "unlockhash": "3107da837a45ce1510fb729357cceac538e0068c74522075adaaab8c243e84f51a766bf44825" - }, - { - "value": "1010780417459301215408553984", - "unlockhash": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b" - }, - { - "value": "1014163840247359789189824512", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1072651541167665960934883328", - "unlockhash": "0d7a4294630c753758a072c4433ea8fd7cad340f2417d6cdfe6a69f87264566363cb60b0a6da" - }, - { - "value": "1033958353598771729288134656", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1207212225996189769092038656", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1017886197723061880618221568", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1041211756726914285171998720", - "unlockhash": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98" - }, - { - "value": "1110298502755094309320687616", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1007169349515411733046886400", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1093904493498777273557581824", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1187121998192126912891977728", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1693232642531950077396647936", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1179922389181908629562851328", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1044030924221425988446191616", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1018442495583125189783453696", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1216307502396189762771222528", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1231344864228132032846757888", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1012510626508887073876672512", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1052973754034976752177381376", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1051183838020098645865496576", - "unlockhash": "0edb4430921926c0aa7e7d5716f2998f4b475ff9650984421f7cdf2744340158177616aa2b06" - }, - { - "value": "1075947997308372812312870912", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1142636183119403551998083072", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["225600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vN25Zgor0CcrsQxJiGypD8qAZ5B/C5cVFFnIYxcts8n/UyfCnj5X+asUWUJFXlTmDdSGoIYmN8SpoN6zkO9vAA==" - } - ] - }, - "transactionid": "0aa72f2942dada429db0fcbc9621e0800f2c83de78108269ead970099de6aaf7", - "confirmationheight": 218170, - "confirmationtimestamp": 1564508173, - "inputs": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "072ee1e128eba16e7c61a6fad4539d434bd987e1c4a32ae1ca3edf741327a17b2586bed443ff", - "value": "100730110807347455006447452160" - } - ], - "outputs": [ - { - "id": "777d06d4837bd95a9677fcf836c988d2818c628b4536bdc5c4e08e6ea484dcdf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1071427752058045537676427264" - }, - { - "id": "0cd2e559958c52186b917dcb1c61f59d3a5b3addeb29038eb1e9d5b346ad4e01", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1833687755922912212561166336" - }, - { - "id": "600cc1fae4d77762463a0e55e72113e8fe3f817f928cd5ae111627e51025aabb", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3225824949199461641338486784" - }, - { - "id": "a0f3ef0c6bd770864d0e8be56a95adb66fcf3c78cd692700662648c83f8a37a8", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2094390331469441359270641664" - }, - { - "id": "35998ded4ee10810e65222dca90162e3e26092f93af794501738aa5ab9f2643a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3833711659533378673935646720" - }, - { - "id": "41e22dc3f5bff226321eee2e95d32005601cb4e792922a692ac49cd47ee58cde", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1401972127014063505889296384" - }, - { - "id": "3d1f314691fb180ddb4e9878fdbc995db4525181cd7887786dd7dad95f95644a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3625395475998585459000213504" - }, - { - "id": "7c096b8f8d418dbe70f6dc0473ceeb5022900955c5761def9f3e2290edf2491a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1011810607716945807015936000" - }, - { - "id": "01c2e1a5078a850f05e2270ad3393a3ff5980fc90b7632849e6d88ba0f0e179c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1207944176978929872346808320" - }, - { - "id": "5a1d01cfe096ea456ff114345be239e4fd38a1e1b5794547287f0833f4e06b1b", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3500217464152389453504053248" - }, - { - "id": "8ac5fe6d945f2db1ca01eb92f3023db2f085df9d25aed2e2e47dc0470b508eae", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1057128892525477062709870592" - }, - { - "id": "f3be5e53378c1a7e1722f149d39829e9ac433bf3973301e370ebd5f7ad57268c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1393745578986345480933343232" - }, - { - "id": "9eda9ef560a3c1583d83ac393c22023201a6216475d4f76453e30ce3f15fef40", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1061275724271989444740907008" - }, - { - "id": "69a3787f3433f4dfdf993f138b476ec48e87d5ae99f31a5b52fa80fbe8f7a07e", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18472049732086311721021472768" - }, - { - "id": "7c3483088ac2a3d311ce1b424eacd31182326d6eb5b722c07f0541c32edde265", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1262005903837310296537694208" - }, - { - "id": "ec591983e5de76d255b98b52f51b4bdb36440b563b1448a86f6829084ec14b8f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10558807663073043309947518976" - }, - { - "id": "e58841cc7438d860433715113dcba5acc03b119848dcb17db5f5ada1d5fba317", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1906190744775911892775337984" - }, - { - "id": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2515733323140156357481594880" - }, - { - "id": "c6c74908fd02afb14d1fde7f30c3261d83ea48ae29cb3d6b62384746c5a91b14", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1053320509622218580786413568" - }, - { - "id": "fc2018f3bc5527ff3a606dda341e17fb5ae3893ea2c58fb1f124a4484fcb53f6", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1141155425115269549227245568" - }, - { - "id": "6bb3d0e5bd69c7d4edd078c98ac30038cad57ddbaf6f9f49dcd90c8f2c58fa02", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1340917229544456799425396736" - }, - { - "id": "efa6b8d035512300a7750d7a3d43057bb5944516064fec9a80a037aa390a987f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9333447933808113289537781760" - }, - { - "id": "9dfb21a6a100e7f95f75633a282a4c28aa04f94bfea2edb7f5a53c6e5b7082f5", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1282223064687862020107141120" - }, - { - "id": "b26923d84dd46b86b16c79541ed48aba47309b620583011695d658ab78237237", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3107da837a45ce1510fb729357cceac538e0068c74522075adaaab8c243e84f51a766bf44825", - "value": "1030609287813690303118639104" - }, - { - "id": "0447e9b4c581041aea7229fb14fc2a7ae1e2f496a7058a7defc5fbfc8a52089c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b", - "value": "1010780417459301215408553984" - }, - { - "id": "7dae4eacf8c586c02a0b1e131820aabd6b9879f3e519478d15e53732f6a29bc1", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1014163840247359789189824512" - }, - { - "id": "ceb055de98925ca18f01ac56edc6cb83dab76f8391efbaa2318d10228330a84c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "0d7a4294630c753758a072c4433ea8fd7cad340f2417d6cdfe6a69f87264566363cb60b0a6da", - "value": "1072651541167665960934883328" - }, - { - "id": "e6d47d9741749c618969d4bc8c985da530df4649bf69be41c1f6e68906d5ee41", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1033958353598771729288134656" - }, - { - "id": "4900b666f55647bf9c6086ea715bc52e4dbf6fccd84ce05eb6f64fe59b5c21ec", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1207212225996189769092038656" - }, - { - "id": "8846703b6549bc1f7ba94ce6f8422db667f069ee11b49e9f4c154af6c699c675", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1017886197723061880618221568" - }, - { - "id": "241ac22335025004882552d3efd2553f07a58cc481f8b8de93f3bb563185c23a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98", - "value": "1041211756726914285171998720" - }, - { - "id": "654d16e46f613dcf689e9a5f2f1dd030d0503072cf52334cb8421c814b822350", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1110298502755094309320687616" - }, - { - "id": "47e47cf91e9a4f74d9848dcff2a0063808daee4d8c43a3750cdc77639e7e5c17", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1007169349515411733046886400" - }, - { - "id": "884974245f0e5434342173b2c11b3aa95974f75c401cb538534a58cdd5d8d95a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1093904493498777273557581824" - }, - { - "id": "d003a3c28f7575114b1ef221c18ed04562b11ebe25d795f52c810c2cdbac7b72", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1187121998192126912891977728" - }, - { - "id": "244dc61c4b7ae35341e43609f048e1b257bc037b004121e2d3d808abe8ff29d3", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1693232642531950077396647936" - }, - { - "id": "d13fab6dc99d774c5f78eb3668434097f0ddd45da5a98be873e8717802b3a434", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1179922389181908629562851328" - }, - { - "id": "a68d102462a605e93701f0390bf0330d10b542679f7695a4ccf5f18166fdd937", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1044030924221425988446191616" - }, - { - "id": "63aff1848846c1218e10f7b86290e6eb443db28e29d4e40aee6bd236e9305e93", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1018442495583125189783453696" - }, - { - "id": "f042e775a4692b67522be97d2b5b12283987b39df45f9721983e5a68241be2cd", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1216307502396189762771222528" - }, - { - "id": "848901698f20639f7074a6ef5884c88587a410cc4be999ec80206a43c48007c9", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1231344864228132032846757888" - }, - { - "id": "e164d426c87898f7ae664c51ea88af36c333a66e45676491e75c78d343ab7291", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1012510626508887073876672512" - }, - { - "id": "db52d35f777f14f1d4f13e57541639ecb34001106163a1df08089dee7ec4347f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1052973754034976752177381376" - }, - { - "id": "8ce8bbcd9263a36eb11d61275969c31fc960115ea9493b5326d6e5553a084a3c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "0edb4430921926c0aa7e7d5716f2998f4b475ff9650984421f7cdf2744340158177616aa2b06", - "value": "1051183838020098645865496576" - }, - { - "id": "c9ac05e07c8535a2350b4c52e46af461e32389d0234850c778b77e813169bfbf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1075947997308372812312870912" - }, - { - "id": "f0e6a2401905407546ccfeb9bbc2adc20342e552355b9c947f85613fef8140cf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1142636183119403551998083072" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218314, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "225600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r2J806EwYACcO1nUiov2VUah1c65lG+PCOHUJCnE1z4=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5625212731208408981915248139776", - "unlockhash": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "W0S3hWx43Uf20wlOjW5AOBwCmJQXVGJ2zoUgvjgRMxKcAJ7So/B7nFjAXiVR7OiDnytiHhRbdqZwqnxkCyuIDQ==" - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Kg4z8jFV0LoCDSXam8/3f+kx4T2Ps6sww+FnqtZWOO6c3zeRJd89VxCYkz5/LsEEg/ZXnfccCIOOR+CJ5Oi4Bw==" - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "sepT3HFOHYlN0Iv8hVZxuAbNUEznYW8SD1ojAppnDbImlNo8WZlco0bNDgTiFR4TH033HoKyQ1VDsTGgulxsDA==" - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "faFrn1ZxgPPGDdi6PkstnF7lvsU192lDf3a0TPTLmLaK58Yxm04DNbIi054elBn9EJlF0K3rBABVWvx0yn17DQ==" - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pmz2ijdgNSflXAqiwsnudyqyUN3gPuvSbwLf9qiSXhr57ZR6KfdV82u5Mh3sPpAB71sZnBqDpaSmCqc8Db2nDA==" - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VUMQ0Y54+4QSVcQxTzQs6bZav1uGjK6oAOjbVeV5nBXVhPCXebyYmT1C4uWqOZasHuR9qiU19pQYg7ucpdkbBg==" - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JsCF5GEyf8XLeNiJJ5ER3TBwjZIN5vOtxCgjgpcqIbLP66+oZxfk87JIDoFuN6vlUeX9qDEt4aaQNqKj47NECg==" - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "j2zopd1NqX3gz+NcyOzcRtt/gG3tAii/55byNxfKY00ayA4DyM2Y+4EDlZ1egKIiLi0GXXqJunyaXXLfDH4BBA==" - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pQGNPrzy9aQa53tbCGbqip7jv6IzAw8VFCM6jqRLo0KkNF04Nc1zZwHrv2auxBIYnCwLh05JCQEZWdwgd6GQBQ==" - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QZn5F25jsUZ1CpPMhWl5/FI8hzUHpwkRaezTZQpNzb0oUzZOohMhF8nx4Qjo1AqhhcfBqyJ8fwQJkO+2LEpmDA==" - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZBMcMf5k9w4g/h1Hjph5e8I7zMsOy/L7ahd9MgNuU5VSBdUMbDUirWLKIfIxc6Q+/aL+NShuKGh0KG6xB0mtDw==" - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "aNt1bpYfhrLQJQYyzVdcZR4FLn6g07wRfGL9l7h7QVGMRzVIUj3wjV+hWnKlTWNGsnuTIg7AfZcF92ww81fpDA==" - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Iqz8RbBVdWwqdsvUVYCw3XHaMBpLVde67e/k1OqVr1faELhCnF2YJZRjrxRJ1gm1XzOnv4ueeZi1BwQ+0iwOCA==" - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "M4M28P7tMQ6unXuURLcebKvojZsu5LXVoe9SRd9+xhMJaLCMUvWs5iYAZ0OYx2cQ/a+nHAdrb1BFC/jaHukMBA==" - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SxJsCPYvFwI2Mes7/W1xOk8yp17O3YotbDg2LOFtUoe+KPDtJhHn8+ypnbvyWCTLSAkl4W1Oo2q0aWbgOVhcDA==" - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jrjBD1jGg7YnmrSb7QcwmQrSDkWP7Nbz7AS/DieVEbwYnwcfJQzjQR7zBDcokM3MzuQgDhIPPYj27+hMYohXAw==" - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "I+DbHPexsJ2N5z0SvxW1xBbghXbnqmZg7/8Utk+7hEcMG5XDVc0e0pB116y7/pMTLAfz4RQJI1vp86iPYK0BBA==" - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "sRoshhWpC2E0338NTYhgdk2LvSnI8pAFg2Mglh98Wi6K8W7SRBuSqaVSsrqc3kWkSTiiVJyyPu1T5SBiqRp1Dg==" - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bskrFxCTYFHm5gCuWX4EjvqLNbisa4VSNYi01lkYn87MDlXW4O2+cMekFo9Qsf+bPnhXEOjQa9ukKN2i9bAhAA==" - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XTLM7wBCQ7y8NH3Mfqrd3s8LkvWhwRM+jzWA92hV2IR1zAAN6MhEHPpAu66hKSiLfhtz+1mnGdmj9fuPolhrDg==" - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2Ny5ZMvel6hXs/+2UfUdh8pg0mvLMc7KzgAMtl77qwsIMjY5kAd3GKQ7QHPidFP0GzpOA9fCQATC5SCmNV5NAw==" - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zc11VoWX+WaBSpx0xkNAlGPpGxHMG1OnfnP+3jmGhK1jcSsPRDqpiJVvTrVDnzqwEPfvgA1GsWCcn2tg+IQtCQ==" - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "mp4FTIqSzlnUpLYt2SfYnC431hqb5rGk3OzOfFFXO3Xdc/OcC+npzPE6zy4NvFmrozSKPCaIzcpCnkT1ImEADA==" - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "14qdR8qMTSDhFhr5+xaM7bBsgqFgUMIg6ohoh4DbqEfA/gA2YW4+pDb1DEjQ/m4hg7JVu/nFn44vHmmn2Ki0Dg==" - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3AdJi3k0RIedqoslD2CK6igkrWzNiMTfK0Kbi47cB2kLz5kr564vN/ljn+NDldA/lyCjDIFTVIYLr5FMD6UZBQ==" - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NaeD5fsiNJX5iEbSYGQ9A1Q6vDX9jJR5zGrJm3UAmp+DVxbLlpsd3L4RjnQw/lBal9nZo2eoQ3gBVWrlDwA9AQ==" - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wyJN6Z7Qe0fQbCMfsm8uXDI1XviIUK4crjQCTyRq5+NReKKsQdY59nUO7wqEEvT9hSaM6mEqsqheE7Vr3CUOCA==" - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3Wog8d0PRjDH9xFEHtbOUvnklv5wp5ER+UI2zCWA9+IEEgzPuy/jIc2+2U3vHjDGcHWjGuATzPUcp/+IONv4DQ==" - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ttPhkgsm6CtExfjY8oLwEF0m1PxpFf3QhpkXvdeXFUYWf6XlIS9vWkbzjEmpKwRzKuXr/r+xWvMCxS2P/SdCDQ==" - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4Wd1EAqzLPaRE62tYdj2ghhiA0BQasAxOd9+JERnySyG98dfMg3mZslO/6sDMWbtCLNqX376AIfaZFVitMMIDw==" - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DQNeCYDsi33RWt4nu2cgnceRNOpNmqajJAGER1m0De3Kgy0XJgoc/bMaJ3AmXeOwZMWsPAEQzbToG4aw3u+qAw==" - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gyZ/QNVa/YUp1HIsbDZJP23hRTnUwF9zY1yrytGKHx8NLf+u/m3e9Nzl/xDvAOV6nM/UAB5eQwmeSLUPvCqEAQ==" - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hoRQUPNnZYplw82INyYRQkIwuZaJU13uwOLDg7eq1AlcyOBwG+NcVn34SEuR7zZeuPwgPeQ4UJvKXJMiAKmMCg==" - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gpmtS07k21TTvNLCXncN88ATzLGy5nJQWRxJ18z7AMoLv1mffGPeLkUALr1plr9jkGOhCZv3FCYTXpNp41SWCQ==" - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Pa7osUvu1mQfS6FJ+RMOg5yJsBZC/XNJwVMca4DWjCDH/r/poVO1tZ+vVYy9lQUU3kx8rd6QzlWq1UeDhYISBg==" - } - ] - }, - "transactionid": "b0e6f077ac901edba2f35228092d29ea1cbaf9e4b05b7efd35fd0dd5324d22b7", - "confirmationheight": 218171, - "confirmationtimestamp": 1564508749, - "inputs": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd", - "value": "5542949563558464152195358023680" - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3048695663695426512066969600" - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988507563824936148835237888" - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2964984241465839560331100160" - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948827743243064753510154240" - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2912421435067960091385790464" - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2848857595274758581309669376" - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2846299247203753521666064384" - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2837128019724415612865216512" - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2820108406750158796917571584" - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762258971256558438601195520" - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2731826231198176090764869632" - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718360009967921243757740032" - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2686797296490122071582441472" - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2584212828375632800773046272" - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2515733323140156357481594880" - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2501662376093900483317465088" - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2458820731707286914208890880" - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2420126169146622647147167744" - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2398863643457125825250328576" - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2262759847283088137440460800" - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2246723016259082233000755200" - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2225842357202115310898905088" - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2222862989743389457216700416" - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2216366038787625402522140672" - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2214843582313188321252081664" - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2198199701266604465842028544" - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2186183085917049875257622528" - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176891228907684244467220480" - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176419340325755875384885248" - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2158098829662201704840429568" - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2130675968690611466620895232" - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2123188483956867323045871616" - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "1493837915586108567327604736" - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "235783766959640883000000000" - } - ], - "outputs": [ - { - "id": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "fundtype": "siacoin output", - "maturityheight": 218171, - "walletaddress": true, - "relatedaddress": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb", - "value": "5625212731208408981915248139776" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "iOPt2YHcnYpSNQL2LZGI3pD5/BlD3qcQjn1OU+02yvg=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5625212643708408981915248139776", - "unlockhash": "37a5dce5ca46e96551dc3203a61b17ee6fd8df1084285742e4bdcd3340a13d558e9dd46352a0" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xU10euOYCbrrk30w9JWT4G7VDLE3Mh5pP9kL+SrFBdRFzWyTqpuetYqraqHvrqbXS1peHDO7VfdY2ALHlEbjCQ==" - } - ] - }, - "transactionid": "919733f3de59445e766d45b3877e01db019ac065d89f3c232ce553df6e8e5e63", - "confirmationheight": 218171, - "confirmationtimestamp": 1564508749, - "inputs": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb", - "value": "5625212731208408981915248139776" - } - ], - "outputs": [ - { - "id": "e338698aa1a86582eaa53bf09ef3d5774d48f299fb277664a97116c66bcb47f6", - "fundtype": "siacoin output", - "maturityheight": 218171, - "walletaddress": true, - "relatedaddress": "37a5dce5ca46e96551dc3203a61b17ee6fd8df1084285742e4bdcd3340a13d558e9dd46352a0", - "value": "5625212643708408981915248139776" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218315, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "pEkmjA8o5avYjWsCsU8kAy3mFHR3bmQYqOqw8pP0iu8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1108869230997710257782784000", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1253473076752561705762947072", - "unlockhash": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc" - }, - { - "value": "1023002967981869574391660544", - "unlockhash": "f8f4e1466af69b20611fe978f06e306e8a639c3ef33503dfdd28b3606bdc8e49606c077c3da4" - }, - { - "value": "41016812222172828594929139712", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4913766465499249162212868096", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1098307621857533071938551808", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1004436413456358089055797248", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1247779890898062823709474816", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1036146783099618394683949056", - "unlockhash": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba" - }, - { - "value": "1701693592821409290651697152", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1054038654661497581056819200", - "unlockhash": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee" - }, - { - "value": "1519731858435158654607949824", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1281817490497892097569849344", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1285715766764277543414005760", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3271490768318285883855863808", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2182387154281675194407845888", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "2020983049539175093070987264", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3899843439904816005898043392", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1142361491308891464308097024", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1178636682776127059162038272", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "3624267123025168657572429824", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1029411883789179772720644096", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1261326686357251796160741376", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3727282787259128887958831104", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1688136457542271739956822016", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18842225736603579413876965376", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1968298466600763039416320000", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "10661010851853858021637619712", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2598134109339045069777272832", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1169438717872455285863350272", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1296378987219224014813659136", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9546948980286797678169292800", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1014507349157824058938884096", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1000948225914116071669366784", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1163989620972032424371814400", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1035891734715187946231726080", - "unlockhash": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1" - }, - { - "value": "1086753179593517522761416704", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1001149655088160163171958784", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1016100568305242981716590592", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1003722772434001195445518336", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1427508666712170824851259392", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1020676455355016868025597952", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1023202066658153290515529728", - "unlockhash": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22" - }, - { - "value": "1006894474190435394438184960", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1743385135905927474815434752", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1570221293935631652736729088", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1167805762383126385171628032", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1114260836745013636954587136", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1025898245353375161518129152", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1027901303622091513132482560", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "A1upQ5ITAIgTP+vrUVKNA0M5RtHwTC4b7bwj9cWT8j1K4plyHACZYXSL5b6ZuDW8Cqi14fh7rFNM/wbB+Rp0DQ==" - } - ] - }, - "transactionid": "197176a975751f7e7d10582727ea73ebd3b7f3f2ec33015264aff49dedb8e93d", - "confirmationheight": 218177, - "confirmationtimestamp": 1564510589, - "inputs": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1fc102bbc36366e449b9eccef9346ba6f82aca0a3a83f3cf7c310538946c218602abbaa58fdf", - "value": "152105212756814745486861156352" - } - ], - "outputs": [ - { - "id": "aadf3f4af042515439d8eedfe7a6aaccfa984c2e799943f2ed9474f346812424", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1108869230997710257782784000" - }, - { - "id": "772c04ee36747d81585d4a9520e3499f82fb375378b19fa284e2954097fae190", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc", - "value": "1253473076752561705762947072" - }, - { - "id": "754110be32ee73af8d60068e54909f52d5b50df3d3a1727b5501ec98c19d9856", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f8f4e1466af69b20611fe978f06e306e8a639c3ef33503dfdd28b3606bdc8e49606c077c3da4", - "value": "1023002967981869574391660544" - }, - { - "id": "204bc8baf39521af857cd0f010fea429a17be219b959a622eacbe3f4477b8fce", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41016812222172828594929139712" - }, - { - "id": "c79f0b22b0d9df005acbb66ac74eaf00c7cdd30814230b79eee59c9df9abd171", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4913766465499249162212868096" - }, - { - "id": "0fa88b5527d63afb42768ba17b0fbf59fe2e4bdf269ea0414bc1f3abeb808c5a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1098307621857533071938551808" - }, - { - "id": "0598c42083462e7f52ac3b3c3089ed791f1212db9d4c998daba60b661174fc9f", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1004436413456358089055797248" - }, - { - "id": "a9d5cdfbc25cd7a66c833ee6b7fc206480408970b83552ee33e4acde8b5393f5", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1247779890898062823709474816" - }, - { - "id": "a4d089bf42f4dcfe904d6da1f40cb3152de3fe0636bfe8bab7b4247837dfd851", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba", - "value": "1036146783099618394683949056" - }, - { - "id": "236a4909158e5417ae96100cf9b3267caaed321bb77da01bc74f0e86126c09b6", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1701693592821409290651697152" - }, - { - "id": "71496509612682857743ea083e1b3dac4ae3c611af08a3df851b5e07406d9247", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee", - "value": "1054038654661497581056819200" - }, - { - "id": "e92c249906ceeb77930ec798fc669be830501c00eb64a4eeea68f98319ca32a7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1519731858435158654607949824" - }, - { - "id": "6a1b1b042b2d90bc6b0e900b22c495dc65f325443aac9f8111b9cc70060081c7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1281817490497892097569849344" - }, - { - "id": "8e58086180638bce37a400afea410247ba662c6253b7af896825d6766dd85efb", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1285715766764277543414005760" - }, - { - "id": "774c6173c9495387397a056aaa75068b6d15110f434bb7e484f43922a391757c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3271490768318285883855863808" - }, - { - "id": "cfa33c76b0d54696c1501dc76b814f2f9d60105200a97bd679f4aec0546ec963", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2182387154281675194407845888" - }, - { - "id": "92b68beee80c72fabef9eddfddf79e2dd8a11633d4799bef1f2c19d89e2f8944", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "2020983049539175093070987264" - }, - { - "id": "68ee7d406576e88d13713286b40430bee25da0104408639be0ccef2810fb0b4b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3899843439904816005898043392" - }, - { - "id": "48758b05c0ce66420a94144af49dd96e6fd03b3c88b5687a5f9d1191eb64ea2c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1142361491308891464308097024" - }, - { - "id": "9acbddf721e196f7aa3d77e9cd8de3389a57d92595c63546bdcb446eef83ef3a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1178636682776127059162038272" - }, - { - "id": "34310e047b939d0858b25d1960735e4962b6a5dc40d325fd6a35cefafc3a77b4", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3624267123025168657572429824" - }, - { - "id": "ebe961b4e99c8ca70a5f562e8ce5fc946e7a3c5286e05ba0a499e076d41bdea8", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1029411883789179772720644096" - }, - { - "id": "01fdc24e16e5efa8befc99d1a537a51f56725a73f8e3686b58e3f54d031ccd38", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1261326686357251796160741376" - }, - { - "id": "538b161a4be122791037ea6669cd5562af5f99812a06d7901b64df060dd50038", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3727282787259128887958831104" - }, - { - "id": "4870415429d50436bb04e8ad2514091f5965a2f9f45a93c9ee045789872f3b46", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1688136457542271739956822016" - }, - { - "id": "143caa1c3c7d9f1cdb0272d19a2cae5810effff3da87ecd63e024cf2d67eee39", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18842225736603579413876965376" - }, - { - "id": "07859b394e0d59462d26f32da9779f076529025d73addd6067ab28bae549ff0d", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1968298466600763039416320000" - }, - { - "id": "d8466b60accde392c13cdc74deb99a214b678ed446082fb29e9fef0cc626675f", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10661010851853858021637619712" - }, - { - "id": "924f37fe95347ec35f82169ebfdfeb140038c55a4a910ebd16bff9d36990fd7b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2598134109339045069777272832" - }, - { - "id": "8b5b0b7fd01e3ad99990046acbe3d0a76be25a59723b001178a8009a40e5eda8", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1169438717872455285863350272" - }, - { - "id": "eb8a1907e969812fb10254b670d07c0c272b2ecb59431bb81538f57ce23fe24b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1296378987219224014813659136" - }, - { - "id": "fc510abfab4c93f4b51aed5d489d62dea50993ad6ec1f4ebd0ebfd265541b899", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9546948980286797678169292800" - }, - { - "id": "079fa481fe127638b4fb060c0e05d609e301e34144cd8fd9d197462e11dc7149", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1014507349157824058938884096" - }, - { - "id": "07313034a90784380ccc79ae84dc7f85c05229543279358291d6bea99693f560", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1000948225914116071669366784" - }, - { - "id": "471de07fe02dcb11ab0e949a94bbcd7ebb5d204c57b8a7e9b9874bc44ca8ec66", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1163989620972032424371814400" - }, - { - "id": "d6a2a39aaf02f699062c8cfc6570fa7a206ee454546714d63b736c2297288519", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1", - "value": "1035891734715187946231726080" - }, - { - "id": "08ca755f73b388d96ad879b0e6edc88b5f021e7693e5d886025780de719cb3f0", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1086753179593517522761416704" - }, - { - "id": "1468c27a3192d33b21f3513a270808c512463951672ca9dee8594aae6bd82350", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1001149655088160163171958784" - }, - { - "id": "3a3bc25fac853dbf4811e9cba1b4a77fe6c7a7b3e24bce3cd05d38b8ff84b2cf", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1016100568305242981716590592" - }, - { - "id": "e5fccd49d8445ead858130969b4cfbba14e375a171c7cbb94d86839c3e37a10c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1003722772434001195445518336" - }, - { - "id": "f28849dbfe3e3321f5f96e9f94de057055ebb4081a11d485f09a6f4828f39e3b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1427508666712170824851259392" - }, - { - "id": "ebac40e552ad2b408cc98d75135ccb1b53cc7df8f4ca4cea5ae860048e468e5a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1020676455355016868025597952" - }, - { - "id": "3a93f396bb30a9ed85d611641b5bbfa44b3a7132a53b57551fd90c7905710c27", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22", - "value": "1023202066658153290515529728" - }, - { - "id": "d22b0cca0afaba5bec928ca9791c4ed836f6f7153146da97781fc5c8c36ee781", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1006894474190435394438184960" - }, - { - "id": "5084bc210f7d1ccfb9cd767aaf6306dd60cc5f2b83791997898a1d6772378292", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1743385135905927474815434752" - }, - { - "id": "5ed105eda7bb34c85ee1ff343272e1714284739557c8a03be7e534391605de6e", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1570221293935631652736729088" - }, - { - "id": "bc0341d5a760954e8b4bc039eca270a36bb23b80a50a1064ddf7b4a3bacad238", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1167805762383126385171628032" - }, - { - "id": "8418c64dc834e8d4b81affa76d4b9b2343fc345868a6b11a464850e2a726a53e", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1114260836745013636954587136" - }, - { - "id": "376e8a5a403e1225654f46229028184936905893fe330e823a9e3c957a079c6b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1025898245353375161518129152" - }, - { - "id": "490ecfdeb018a7f0c9a70d6e9e51434c5cb4097548b7a95d126fcf77317ff6f7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1027901303622091513132482560" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218321, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "lBpcEf2E8z8nGmDZUo/5TWUEcWbUzhPpvgi0YtyAZZ8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1033161002535728302014038016", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "1086902398039214261409349632", - "unlockhash": "a72ef7a241bccd7f2119f1cd3ea67dd0f726b08a5ebd196c9d46efad0af0f3cc397a98714439" - }, - { - "value": "1232124860745595052994592768", - "unlockhash": "a67b608f96969e736b63e771def905a7bcb016d8dedd72b596425ff6b5a91bc17d9284e4a16c" - }, - { - "value": "1004462044662122690442690560", - "unlockhash": "e25ec0e2b30fd100f1a8e3feb4dfa058d8d3693f4a0ca3ecf1dafc942759c92eb9cdddeda163" - }, - { - "value": "1051116544433387837727965184", - "unlockhash": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4" - }, - { - "value": "1043491865849158212099637248", - "unlockhash": "bf23604a44065caa07e3bcdfbd8154cc5387a7d599b782098409a0f50d398b54ceef70f428e5" - }, - { - "value": "1446835984177447985649549312", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1106366404059674570717921280", - "unlockhash": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3" - }, - { - "value": "1183494452208407370339975168", - "unlockhash": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7" - }, - { - "value": "1065619271637260280540430336", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1096160744105364733916610560", - "unlockhash": "57d2f9f9d5716680a8950f25a1caf445d42296df42c6473bd778be5d6b1ecf5b29ed8342c1bf" - }, - { - "value": "3985791795735811647109857280", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1095265297775371306237165568", - "unlockhash": "1dbcab167414819db638c9ae324b2cca80774655e53631fc334561ff7dcfa20ea65bf7bd2b9d" - }, - { - "value": "1013869316974170064371056640", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1084947098990733728916439040", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1077643204735329049390350336", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1115012479455180459601821696", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1015471116717860262673285120", - "unlockhash": "90088d88db151379cc29b57314c8088ee6a6609d2d450a8fb9d4b8efa8126c4d7973eab42361" - }, - { - "value": "1013045274676226303210389504", - "unlockhash": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69" - }, - { - "value": "39899399333782678994973360128", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4736441826358961866039885824", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1079990196951013120221904896", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1076057178284465344641859584", - "unlockhash": "07c12a2c2bb4598481704794e30c7c65308462c5f5372162dfb2e503ed6f53d624ba63455e7c" - }, - { - "value": "1077353188138675417669828608", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1021473331455000358096044032", - "unlockhash": "c3ac26401d16dc62792181d9229363924562c0e85b09dd99aca96af2a671afc175d67a8bdb1a" - }, - { - "value": "1898797944699280117513322496", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3196708633397831465300918272", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2040858896393960208868573184", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3544256455480596325214453760", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1118686104103438137572196352", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1006440268406882342212730880", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "3635343936986171771260502016", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1116330498532743564558860288", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1101264933026332229204180992", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1259780082522910659723657216", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3536386613338957416480374784", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "17847287110574143166285348864", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10098564759736386570567024640", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1920384690035105715460243456", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2490634074934499938121285632", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1145214119014343563628511232", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1295660963225007387312128000", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9143773260194257221546147840", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1066451838847660917831630848", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1006106970598010778460356608", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1137350582616684506155319296", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1055859674675513906750291968", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1091894509944502973530439680", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1162129174071094436508991488", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1077440175024730666789896192", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Fl8TgrF4EqPBTk2OCb2MNr2E24pY90xSHHQHgHPtMN1aeYdVX9ndjyFpOm1YJB31JgSw+fGaEEXYasDqJYrjAg==" - } - ] - }, - "transactionid": "8672e6c6936ff9343264418bd98b62d0effd58d211e2de0912ea89505da37e57", - "confirmationheight": 218183, - "confirmationtimestamp": 1564513787, - "inputs": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "4a0394151321ffecd106c5d31bb5b08678dc9d1ef1efb26271032bbe002ebaed0092d2d39979", - "value": "147635342482865885207863394304" - } - ], - "outputs": [ - { - "id": "67b99984d0aef54d51b97ef1122882e4f2f5d19239e03ed0f83f20575df54945", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1033161002535728302014038016" - }, - { - "id": "095ca71420e0adaf1ea98c92b740d053bc8aae7f372a0f7f3b2d267f5ea11655", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a72ef7a241bccd7f2119f1cd3ea67dd0f726b08a5ebd196c9d46efad0af0f3cc397a98714439", - "value": "1086902398039214261409349632" - }, - { - "id": "92673e1dbc5967060cad555a1ed53af5395e884fc38ac57f8d1af88c01c1e848", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a67b608f96969e736b63e771def905a7bcb016d8dedd72b596425ff6b5a91bc17d9284e4a16c", - "value": "1232124860745595052994592768" - }, - { - "id": "dcb2ead92b0bcb4e3018f9823e87b0c4a7c0e293c2ae78a2f2bb7a7fc7164d9e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "e25ec0e2b30fd100f1a8e3feb4dfa058d8d3693f4a0ca3ecf1dafc942759c92eb9cdddeda163", - "value": "1004462044662122690442690560" - }, - { - "id": "d0dc9f4bc4a01a66e41847bdda3df61591a6e7e67cf7a4a612638bb1728fb5ca", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4", - "value": "1051116544433387837727965184" - }, - { - "id": "2252ed6f262f4937223c7e4946e9b4bf119d5fc21a3e81aed9581a196a2bb57f", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "bf23604a44065caa07e3bcdfbd8154cc5387a7d599b782098409a0f50d398b54ceef70f428e5", - "value": "1043491865849158212099637248" - }, - { - "id": "0e7dac5ac49455701a39626ec3eccf0e38e973e1e3e9097eb9586d234353c923", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1446835984177447985649549312" - }, - { - "id": "28ac6c06f60f07aeaf9cbf6d1b495c35bc12cca26f13dd2398599bc96d80572b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3", - "value": "1106366404059674570717921280" - }, - { - "id": "12efef87cb06cf44f424f07baf4e402f1360eba633e81b0796cf823639d3d454", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7", - "value": "1183494452208407370339975168" - }, - { - "id": "12d3b2296fe8c4cbed945211e45fb0a37ab0559a7ab260cd0634c737f51321db", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1065619271637260280540430336" - }, - { - "id": "a253c8e5bc0adaa311b0086a3f35af02881aa32a8932846b9f8c69bb7554880c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "57d2f9f9d5716680a8950f25a1caf445d42296df42c6473bd778be5d6b1ecf5b29ed8342c1bf", - "value": "1096160744105364733916610560" - }, - { - "id": "76fec31e2cfa33682d5c1b57d8ab0c23f52eb2b5646ba68469482c81f911ac8d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3985791795735811647109857280" - }, - { - "id": "dfe1ecbbb6a3037478b29baca676985a597b4678f0a8748e1f39fad103de7e38", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1dbcab167414819db638c9ae324b2cca80774655e53631fc334561ff7dcfa20ea65bf7bd2b9d", - "value": "1095265297775371306237165568" - }, - { - "id": "fdbc90ccf72d39d4c9ba346db2e4c3c92e761f2788c35fb6b60ee1979ace942d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1013869316974170064371056640" - }, - { - "id": "d6a784fc7e8b15315e4dd6b73a27c37de818f0e3c9b544e97334398beed65282", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1084947098990733728916439040" - }, - { - "id": "4a651af976cb6a2e3b321fcaa2da7661fdd9c3993820247f0a239d697aac8385", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1077643204735329049390350336" - }, - { - "id": "a55d0fdd8a681c29ce25eced24b03ffa545032f48288baeb44d0875191209796", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1115012479455180459601821696" - }, - { - "id": "13712b5278f6479407d1a3436d145fc851b9aa4ee9ab219e55967d695fb212d1", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "90088d88db151379cc29b57314c8088ee6a6609d2d450a8fb9d4b8efa8126c4d7973eab42361", - "value": "1015471116717860262673285120" - }, - { - "id": "40551f2dd0114366df28e1068d3d6955f6f52124776d1713cb28c0db082f0d7e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69", - "value": "1013045274676226303210389504" - }, - { - "id": "2e6302801452fed1ae3fb8cc964535ec4e305680f4a7835f2c03801d0c887a7c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39899399333782678994973360128" - }, - { - "id": "0175e5edee11e67488f39934dab33d19feb8152621e45df9ffb3d2de119eaf70", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4736441826358961866039885824" - }, - { - "id": "4fc8800717dab94f54ff0ceeb7e6f98d0210acef886d313a3e8ae7a7120a23f3", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1079990196951013120221904896" - }, - { - "id": "3d6d8b1da490fcb8f0caec2ac964f7b9e61b4087dfe859fa19183956a69d224b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "07c12a2c2bb4598481704794e30c7c65308462c5f5372162dfb2e503ed6f53d624ba63455e7c", - "value": "1076057178284465344641859584" - }, - { - "id": "886d6852959106d00678fe271466b95074848ed6def0938cc5defa62ac585fc2", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1077353188138675417669828608" - }, - { - "id": "a286af8cf232d6bb29f3f550696a2d72ab691dd2a39c744907f3aefbf7708072", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c3ac26401d16dc62792181d9229363924562c0e85b09dd99aca96af2a671afc175d67a8bdb1a", - "value": "1021473331455000358096044032" - }, - { - "id": "7b7b64736392de32b6034475699162c98c40d2f378e47f45b23c22899466245e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1898797944699280117513322496" - }, - { - "id": "b2348f40fb96561278d91ea907118702cd7d5f68e625c338c98ac7c48dad27b4", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3196708633397831465300918272" - }, - { - "id": "3f1aa911858b2144a32c5b3bb04cf6ee3b5726681bd29aec91f61684d396b35c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2040858896393960208868573184" - }, - { - "id": "42d8ceaba48b91d062e92d104210ccd78f86b95514a86b7f7db774c676c499c2", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3544256455480596325214453760" - }, - { - "id": "005135d08c632a12b07b504bd4752cef6af8fb668a602498a9a76b006378a081", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1118686104103438137572196352" - }, - { - "id": "98ac886456169f92c6b6420eead69d214768556c577c8ed25e36c592e64dfb0b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1006440268406882342212730880" - }, - { - "id": "2d5c26a3dc44bc609ea264d226f1921eae462b05524dc3564af603b798cac641", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3635343936986171771260502016" - }, - { - "id": "d8267c9d4ac8f8043005acc5b267d91aa4bba345d67cb48f231a1369c3181fff", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1116330498532743564558860288" - }, - { - "id": "3a3baab5645e95474302a95d71b73ed1ad18ead1714b699d22a2b9e3daef1b9d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1101264933026332229204180992" - }, - { - "id": "09d016e4338f2811fafb99d92427c879e4e6ae00f04e016198b8f284707ade4d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1259780082522910659723657216" - }, - { - "id": "8dff56f8d18b8e9a5791edab21d10652c0aeabaf64fce7a34e27a117169784cb", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3536386613338957416480374784" - }, - { - "id": "a3aa0fe59f206f2d5875d2f36aec960f97202a3d8650b8f40d5c19f18bb46b8a", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17847287110574143166285348864" - }, - { - "id": "a84ac507626ec545020a9dc9a8398f3a8472384ac18f2886423ff2e222a2d980", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10098564759736386570567024640" - }, - { - "id": "19459893e045f88ae980e00172c58dc4b244ef6204dda77337030637b6486742", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1920384690035105715460243456" - }, - { - "id": "2c64f1c5e10ba95d398739734abc89931f08582be74d6dec193000fb8ce93d1d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2490634074934499938121285632" - }, - { - "id": "e745f92712fa62c662553cb2c774867d7fd18579d3ef80aa4a65487724bbd33b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1145214119014343563628511232" - }, - { - "id": "06855b9a9fe59ba131f513f8514d897fdffe2235c7dc30fbc808db375e69a6c1", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1295660963225007387312128000" - }, - { - "id": "de4ae7432af8866db97bbb85cc2cdae8abe6bbc119736cc601d94c613f0e6762", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9143773260194257221546147840" - }, - { - "id": "b8b248102569a1bcc5b684e6597a934c79a7791e150566f92d4aa4e3370d39e7", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1066451838847660917831630848" - }, - { - "id": "d5f193a542d21ba30188229dcee8314f7d5452718823a157e64824a436479f1d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1006106970598010778460356608" - }, - { - "id": "0eb0940d859224a7d61c8b0131c167ce0d623c0dd8b1a078236e6060b5e90b46", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1137350582616684506155319296" - }, - { - "id": "f427182c76dded7420ce6ac1453e6c88ad49d8c37369c4f5da33546025ec0083", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1055859674675513906750291968" - }, - { - "id": "849fca9560fbdb6ccb2d81029ef241e5dcd7d0ea3c63ebe59441d33faabfc9e3", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1091894509944502973530439680" - }, - { - "id": "0d3bd10e1ea59fde17b35045d90bba18e626ff1448851937a08edf4851df8c7d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1162129174071094436508991488" - }, - { - "id": "b41250277e5dfb056ecac57edb64e08c54248ddb0266404bf783be9369fd3e80", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1077440175024730666789896192" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218327, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - } - ], - "unconfirmedtransactions": [] -} diff --git a/libs/sia-js/src/mock/good_tx.json b/libs/sia-js/src/mock/good_tx.json deleted file mode 100644 index f1a76734f..000000000 --- a/libs/sia-js/src/mock/good_tx.json +++ /dev/null @@ -1,42848 +0,0 @@ -{ - "confirmedtransactions": [ - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "RMW7SFsEhPSaG5YeWlsNiuj6Kp1iLHT4FUax2xSk2/Q=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1112044817322145114372702208", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1253494545950235594609131520", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1072655528480879118793867264", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1029871482236961298442289152", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1077015288571741858518794240", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1172793631463656902297124864", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1071178800332597855167315968", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1012731927080980812845744128", - "unlockhash": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017" - }, - { - "value": "1157541926788217201512939520", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1091898430701815155341524992", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1865307845066792792030707712", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1011324375378676933872844800", - "unlockhash": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3" - }, - { - "value": "1212961434110405354401562624", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1253770843708978099414892544", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1003616451479197703565475840", - "unlockhash": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4" - }, - { - "value": "1121871252830647970653011968", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1050914029484723120708648960", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1095173752682803586522415104", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "2130675968690611466620895232", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8938296682656622222900199424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["132000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "I6NbKPkPpvOrLJ5AiHW3QPuXyHsw87XvJhadw0TLx5EjwaQcjl/G3wD+Rx6RNghKXxSC0AKLzyV5Bb9kF6iSAA==" - } - ] - }, - "transactionid": "122468c1e5d8ca4d12ff4a565c1d3cbaff7faef5144103104fd4c395d335b6df", - "confirmationheight": 217888, - "confirmationtimestamp": 1564333903, - "inputs": [ - { - "parentid": "8b4b13a340bbd4aed7edcc1dd1e589f4eeb6402534369ef505c77aa5933ba0b9", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2f8ac2c23dc40605c2c730f1800171719d0f8bfc8d35dc5cecde180dc32df1f49c94470352ed", - "value": "31735271015018690162592088064" - } - ], - "outputs": [ - { - "id": "30f7a4b15589687022aa14f080d82fcd9bd3915e11b8604a219a0b41fab5c7e1", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1112044817322145114372702208" - }, - { - "id": "ed7201e27b6114acb78e1dc6c488344b8b7c8c0c234ea46755adc8364d951a78", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1253494545950235594609131520" - }, - { - "id": "bd1b9634b6534f6c2f5e13e6411591a2566efe2dbe45b87cadd48eee4b575b7f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1072655528480879118793867264" - }, - { - "id": "84ba715dd37005c5601fac64a8d3e84872a55aeaba1b9de4ef3c6e419f58f9c6", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1029871482236961298442289152" - }, - { - "id": "0d56454a754db1eff9106eff5e1ee1987d2c38daecc75e3c49c7622ee5989226", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1077015288571741858518794240" - }, - { - "id": "48347c531aede851614dd9ae0b08f701a6ff0ca13a504fd7fbdf1cd1aeb8aca4", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1172793631463656902297124864" - }, - { - "id": "c32aacd0e895d47d7eb648d492fc27ccbbbe2d808807d059cae64534300b23cd", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1071178800332597855167315968" - }, - { - "id": "b34e744df58481ef676a257fd44a43d0307bd722b39285e3d34a5161eaa79c8f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017", - "value": "1012731927080980812845744128" - }, - { - "id": "08b4fd977d75dafc849257839cb2c26c98db4adca2b7b32ba70b0b52a24ea6ff", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1157541926788217201512939520" - }, - { - "id": "57b2d6846232ffb46dd20d25abe46a7e3a8ab8203501d17806d4ebd65ed65453", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1091898430701815155341524992" - }, - { - "id": "fba1b0da675faff319a54bfba395e50e5ba7f8eba5d83782fab5732d2472745f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1865307845066792792030707712" - }, - { - "id": "d6582e6c858d145e92e355928e2a7a604fb8aa9905073abcc02dd70255394212", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3", - "value": "1011324375378676933872844800" - }, - { - "id": "6792eec7ae668836c561d89b75e6808056e16f08b09b10a7e635a972b13554a6", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1212961434110405354401562624" - }, - { - "id": "57f7e6d72503fbabe51df87b7e39e013940762f12e592a023419c70430afd02a", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1253770843708978099414892544" - }, - { - "id": "f12a1e175ff3b6d2a1cef366155fa55bad27af3b7f8682b3a9131e936046894f", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4", - "value": "1003616451479197703565475840" - }, - { - "id": "8645cb28907b7079f665415062d1799131ab653aa97d0f69a6cc821e8a646066", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1121871252830647970653011968" - }, - { - "id": "27a33c930d679ea801b65a9bfb41f4ac9b975049c3338222a69071194fff2ca4", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1050914029484723120708648960" - }, - { - "id": "3ca97842f6576cb142ce88c7d2cb6f390b9f960c6b23b4e146474a1e69f106fd", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1095173752682803586522415104" - }, - { - "id": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2130675968690611466620895232" - }, - { - "id": "9bff610fa71605407a647b5ab451fa543f020ec411d342d7e4eec6f368166afe", - "fundtype": "siacoin output", - "maturityheight": 217888, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8938296682656622222900199424" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "132000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zvaNwj3ueGm7Uc9fA3P/fBxgSzI2T2mTHQ8XaEs2zZI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1108428000033416289344815104", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1217092418284693668409901056", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1396288910988126535932706816", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "1157375042801339429204787200", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2287289430006583496724709376", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9021693407719131678687363072", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["81600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G6HrDYy/4PyOl3RsbMKL8tHDulA0EcbKUs7UDXs5C0x7ctnF/a7DO817lL7jJAjuWaewzH7n06+AH8OOWFJGCA==" - } - ] - }, - "transactionid": "83b8df974030cc32935864ab1a410a005da36493564291e61e7fbc43da20028c", - "confirmationheight": 217897, - "confirmationtimestamp": 1564337314, - "inputs": [ - { - "parentid": "5ff8f0a72ebae7642290de8a7b870cd03a191aa45e76ced12aaaaf2175e7ae02", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1e24b18fd2dee4229a25f35e31f48e5f17ed5f3d48632cd3e9018f58b2cb3704ba39e6d13a52", - "value": "16188248809833291098304282624" - } - ], - "outputs": [ - { - "id": "9e50501821f545ee4a45c530357121ffd914dc74ae43814067c9850b1ae00f70", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1108428000033416289344815104" - }, - { - "id": "a95a6d78c31aef29735680e2961b0f37ea66b63ed0d777977281cd0e2227f4aa", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1217092418284693668409901056" - }, - { - "id": "76bd6b6685f6e9a81f7277d99929b065aa19e1b504851df47e2b4fb4ef34b211", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1396288910988126535932706816" - }, - { - "id": "5e859a9cadd06615228f0a6f10a89d9f5500997c4b27c84fd85759f09b7f5de7", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1157375042801339429204787200" - }, - { - "id": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2287289430006583496724709376" - }, - { - "id": "caea1ef5514b17f8674eb5b9dd363c7dcf26a9a6bd6396373d0fdd296fb53787", - "fundtype": "siacoin output", - "maturityheight": 217897, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9021693407719131678687363072" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218041, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "81600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fHZmUL6h/7LShckXgvfdjCnNsqI9H1zBj0jrBrq6Gp0=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1021273984956638057805185024", - "unlockhash": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806" - }, - { - "value": "1027465533052343248468131840", - "unlockhash": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e" - }, - { - "value": "1042760492985783063376986112", - "unlockhash": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6" - }, - { - "value": "1185259715564364193690943488", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1073707212995278466260140032", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1162049936724621264276160512", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1203562256163595384611274752", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1250033824323862742500900864", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1146076466849428625415995392", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1046726768034078402746777600", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1794139873188520238451261440", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1068289325525373845056258048", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1021771635606133182311890944", - "unlockhash": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193" - }, - { - "value": "1045823018820275832598298624", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1096995875194698688666533888", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1077386960624449355163336704", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1054045772340336836517822464", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "2123188483956867323045871616", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8937168840587626310866567168", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["128400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HleWu+fv3KC19EZQg9YuX0mmlsaAfKGLN00gPChXqSpoU7rfbnulZgHFx6gHi5OhJz0C8bRnFMO/NzMAtlDXCA==" - } - ] - }, - "transactionid": "cdae8f9f290569fb8c4ae56ec7c0d8ee3865437de7667181da24ff5cac04707c", - "confirmationheight": 217903, - "confirmationtimestamp": 1564341355, - "inputs": [ - { - "parentid": "f0903911998f22ab38b1629a214bdd209778ac4e1ce7e037aa2f9bda8ff6ba04", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "796c4c5969a43d50bfb7c226fadd78448828afe2122debfc7411b650127b81fd246ad407ea93", - "value": "30377854377494275061830336512" - } - ], - "outputs": [ - { - "id": "69af936d3953e44ef8a8c23c068c83d419e033d10f0e18458da04d74892661e8", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806", - "value": "1021273984956638057805185024" - }, - { - "id": "20595c75c4256c72462c5f41fccc9dc2e745418ee848d84b29ef1eb4b16e67cb", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e", - "value": "1027465533052343248468131840" - }, - { - "id": "b9008dace0723a272b20c9ede9fce6d14dd9bcda76d715c10652bfc459245dd0", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6", - "value": "1042760492985783063376986112" - }, - { - "id": "de8f3f6f6771c36e0a0f70126f484c858d23d514aaedc39eae5c9662c1a1b3c4", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1185259715564364193690943488" - }, - { - "id": "0624dab94107107a7c151396e73e985be5287f3e225cdd8eaebfc42efd197284", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1073707212995278466260140032" - }, - { - "id": "6060587e227a90054eef4d9321911d0f2e04b637fdd3752ca5728336b7bfd207", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1162049936724621264276160512" - }, - { - "id": "c197629a08f3406eb7f5a92c4a8bf65445a2a55995427d178b37e16571923393", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1203562256163595384611274752" - }, - { - "id": "1700bb649b62ba243252b0cc5e79ef5b9bd48faafc25ff6048609222cb60bd1d", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1250033824323862742500900864" - }, - { - "id": "db7998d39d110cf1e823f20a1f298f9dee5445e959d43331c69fc37c5abea29a", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1146076466849428625415995392" - }, - { - "id": "f399d890a82fed2696cbddc55e1ec80f0d119b3361ec184c23dc92cf14fd75e7", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1046726768034078402746777600" - }, - { - "id": "372212721fa01ba2201fa33bdc4ff65cce0aad92aa48ca8dbfe36cb2e793e838", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1794139873188520238451261440" - }, - { - "id": "e0f571dd3c5903e1a32cdf94e72e3c9e9610c55572e90c29db62b491936b6c0b", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1068289325525373845056258048" - }, - { - "id": "65b1e3503dfc1283a62a3a33da248e4f4896f9a72129754484a9d9a4bb47d955", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193", - "value": "1021771635606133182311890944" - }, - { - "id": "a0d8de8ca8a7ac59e13579d4d81911abf56c79684e12dd448e666bf769179194", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1045823018820275832598298624" - }, - { - "id": "080439e6e83c30bee8932df7edda53e4a00b669cf2eaae0f4d203feef300d5b7", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1096995875194698688666533888" - }, - { - "id": "396e2455604d48b9dc983535b69c313ed58a8fbc343f6943b800cabd7c3771fd", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1077386960624449355163336704" - }, - { - "id": "4476dacd9ccb0fbda910659cbf2c0fa1bdf98794e2606e874f3d53262d010fcc", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1054045772340336836517822464" - }, - { - "id": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2123188483956867323045871616" - }, - { - "id": "2e43acdf2be73a44cfd961aecca0583482b84cd771eeb97e9e0a87e1c4cc668b", - "fundtype": "siacoin output", - "maturityheight": 217903, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8937168840587626310866567168" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218047, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "128400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "YZtOrqJot/oLsRh0sSSM8SZ1Sz+1NDKkiRDAICWOaSM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1091372206641868743203618816", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1029739433074296520549335040", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1197550517498381144267161600", - "unlockhash": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186" - }, - { - "value": "1077231167984809339874705408", - "unlockhash": "f9866f8c3718eb740316e5f76a31d30584643741df940a9c113a70ad05c5e1e2b7b3a730288c" - }, - { - "value": "1007754313627891771837775872", - "unlockhash": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc" - }, - { - "value": "1045476262932734263967088640", - "unlockhash": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e" - }, - { - "value": "1043596079355182959717154816", - "unlockhash": "7bd0a261af06166d6a1e1782ca01a6b60724bbfcb8aefc409f08d2103d383380ce46e08c30e6" - }, - { - "value": "1118462592178162421318811648", - "unlockhash": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db" - }, - { - "value": "1020274661045174197013938176", - "unlockhash": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f" - }, - { - "value": "1348512630970554028316950528", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1121094236668707542182920192", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1075329957666801992120074240", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "3080094023419672392990982144", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1032608459169984847636447232", - "unlockhash": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba" - }, - { - "value": "1067201914508458460318793728", - "unlockhash": "f23bc92b9a7933461ff4069c0f927b9dc1c2f03a2352b65115325f835d068a5832c0d5680e23" - }, - { - "value": "3690513053621146321904730112", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1172814422255301344422264832", - "unlockhash": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db" - }, - { - "value": "4788857935100334703154036736", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1078799561894702536963653632", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1106165128589399239540080640", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1074903581381798826780655616", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1285531983436891462041600000", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1019867714207057040186015744", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1309214784780834665981280256", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1079325249276490582829039616", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1027407083034476572328263680", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1473413130871114494669488128", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1118907878844550553703284736", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1053497242473084694473408512", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1938340869435924139407835136", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1574469109525823988488470528", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1019367652276134933464088576", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1073798652917189848672763904", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1150075986175151241183625216", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1035083335710008577594753024", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1040850021814801439861243904", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1088488609586248495371780096", - "unlockhash": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02" - }, - { - "value": "1222406292544424668194406400", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1390651788900013225613983744", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1261101932094548768156811264", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1188745872167767604890959872", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1156089550182365872055648256", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1231472621187694364928770048", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1109717177478764068099719168", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1055129567977607679532220416", - "unlockhash": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0" - }, - { - "value": "1048564737222333631081627648", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - }, - { - "value": "1374976934484670055214743552", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2216366038787625402522140672", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1011832844111886827150770176", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - }, - { - "value": "1210062893919237233732485120", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RwrFBZNo+odRTmzVyCRbgK6eZ+e5UIL+hUoqwL/Tbw29YBxdCNF/dz6OEITDz9SUu2ri3xCz6QJSHQXUcEiRCQ==" - } - ] - }, - "transactionid": "c65137f6cf0d142d33f4f074288bb8aebc3f5fd63a021727a4b0afbaecaee1ff", - "confirmationheight": 217909, - "confirmationtimestamp": 1564346529, - "inputs": [ - { - "parentid": "bec36498f9777e073ea6cd6db4291bd3533cb0e08b994714d823ca4ac1c5d793", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "8b4e57adf4d1c557f4868be02433343021062de314b1773025fea69515d2dc62e822b90de4e6", - "value": "67033349695010085729512407040" - } - ], - "outputs": [ - { - "id": "79b7bcf02f5153020fbbb17efbda60077e78f70177fdcaa68d9cf334a1b45381", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1091372206641868743203618816" - }, - { - "id": "e7ce3839bdc9b2b57f5ada23a49d214e6fbbdd76d3f46589a4d0ab9c351cabd7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1029739433074296520549335040" - }, - { - "id": "c540b496b94aa10b9865aa55f0b3134c4d8014966f978bd940541f83c779663e", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186", - "value": "1197550517498381144267161600" - }, - { - "id": "9bb56b775a5f29bf20f3e58f09e0090a060f72c708dab8281d93e6657179ffdd", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f9866f8c3718eb740316e5f76a31d30584643741df940a9c113a70ad05c5e1e2b7b3a730288c", - "value": "1077231167984809339874705408" - }, - { - "id": "42a9f8eb39e3ddda3e392ce7cd47cab946273b1f28ebcabfa26ace824cca54c5", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc", - "value": "1007754313627891771837775872" - }, - { - "id": "f6452df5e593ea7f059d20b287062c8e1e8e0309a67fd658d159bd5afbe250c2", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e", - "value": "1045476262932734263967088640" - }, - { - "id": "5ea2bc59165c63ea3331dbd01b773aacea66bb46f267ca40de27069e504be5aa", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7bd0a261af06166d6a1e1782ca01a6b60724bbfcb8aefc409f08d2103d383380ce46e08c30e6", - "value": "1043596079355182959717154816" - }, - { - "id": "bae92c87902893f53ab66824b7fbb5c906aacaec7764ae6d7d22b6b07a824cd0", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db", - "value": "1118462592178162421318811648" - }, - { - "id": "cdefaab5c7f45c661b9df2f5b47ac22ddf68b5624e5f97a7578cd66d07534347", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f", - "value": "1020274661045174197013938176" - }, - { - "id": "cd364c767a0a489397c78542fc53e2c6230addafed70300497e92a1b47565f5c", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1348512630970554028316950528" - }, - { - "id": "c7cca731e2a5e6d70bd8dee86c075732e284434206558a85657f2081b9012e65", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1121094236668707542182920192" - }, - { - "id": "50dc725f9deed0ead101cb37f00ab79a3bb590ec4f905832a08a8ad7844508f4", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1075329957666801992120074240" - }, - { - "id": "a766db7d08030a575473d866308502b1ee83540e71191dd4bc0d17d23b2a5bff", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3080094023419672392990982144" - }, - { - "id": "cdc2697f3640d06e9ddd861400457c42cf6058e1ed6bc3d9b7edd2ec2159d24e", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba", - "value": "1032608459169984847636447232" - }, - { - "id": "da3701ee120b259df44115a0167ea6b0b690ec471b1ee270446dad1694c772a8", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "f23bc92b9a7933461ff4069c0f927b9dc1c2f03a2352b65115325f835d068a5832c0d5680e23", - "value": "1067201914508458460318793728" - }, - { - "id": "bb0e175221ce71d50d069ab059a712eac25e90a022ad76ee9fda41e579f7630b", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3690513053621146321904730112" - }, - { - "id": "e82fa60eef0c21d08e29ebb90a61b4004fc2a768933a77c32bbbad0e1cbb9900", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db", - "value": "1172814422255301344422264832" - }, - { - "id": "d51782d54967860d6a37400c233621a178b9b9b4581825af5250069d632e9963", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4788857935100334703154036736" - }, - { - "id": "67228d121570dfa8976657b0c3cbf71735d083f324d3a839d8e51df981179ed6", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1078799561894702536963653632" - }, - { - "id": "b9bfd02daa61884ee3de84ef46b0854642364ea66c53aa2e52938a1c60cfe2a9", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1106165128589399239540080640" - }, - { - "id": "ac819e43942eed7f100c065e65294b4f91cef15349b28a38b134123cd6d66bd7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1074903581381798826780655616" - }, - { - "id": "62e075e04d41d5acbaccfd178f6a77a83dc2db98e7b05e94bae5cd177a053c12", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1285531983436891462041600000" - }, - { - "id": "8384ef0d4785d20e973cefe7e1df1424f9dbe5fed6cb731e66035ec50b82ba2c", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1019867714207057040186015744" - }, - { - "id": "867850a7740d6de94b1e0c7a378f2be5a275d72e2dca2b7a3d61afa2ee5bf562", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1309214784780834665981280256" - }, - { - "id": "47c8c6bb5c274cd16b8a818924bc41fbee98128f8c810ea0515133b7242f6e22", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1079325249276490582829039616" - }, - { - "id": "d569d09a66fb54ea0c192a48cac432e1c2b27ec5a23fd633db140a3d58a8c630", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1027407083034476572328263680" - }, - { - "id": "22e940a2c1fa55e6f327f7ad18cb6ab79809933d1af5d97a942f183e60e6d507", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1473413130871114494669488128" - }, - { - "id": "b9efa2c94fe105239e8f04e34b0d763c9e9fd361ee4453fb226b084010ded7f7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1118907878844550553703284736" - }, - { - "id": "f88e4154a355e90660216c6012eae78cea8e3764584dc1debb5d3f135f4b8516", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1053497242473084694473408512" - }, - { - "id": "22134e5d6d1edfc5301ef94eedf671b306b864383f8f90c4f7599c147b1a0f50", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1938340869435924139407835136" - }, - { - "id": "43bcee365d29bc64a588dd22a741f5904c625d1ff7d8e030a7f46e020bb84369", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1574469109525823988488470528" - }, - { - "id": "59dd8271bc24a7ec5ad8a391b1800bfaf327be61c05791c818b3f8465d91e345", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1019367652276134933464088576" - }, - { - "id": "4430e560af7a41725fa1f783cfd2a59704dfbef37e8e6c9085f17ef3a58761e3", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1073798652917189848672763904" - }, - { - "id": "de428558ae36851e4e8cb16af9c58cb2cab96d868694d6d049559a1b7deb0586", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1150075986175151241183625216" - }, - { - "id": "37c2a2f89b79c8c67dd4cf835d8a6853d3f5bd203e7f9c58bc0856b4931d5692", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1035083335710008577594753024" - }, - { - "id": "7ee34b938550edbb7b1762fda0cf4c48ce6d1e70f9d3bf469ab07cc0e4fb3b09", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1040850021814801439861243904" - }, - { - "id": "eb961f543b1c6875349665c8d0886a38d56ad4ba46320c9fbb424ada10b827b7", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02", - "value": "1088488609586248495371780096" - }, - { - "id": "d04b5aabfbd96fde12ba5f36bd936652dfe6642dd7df8e4ec1edcbcf784d9549", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1222406292544424668194406400" - }, - { - "id": "faa176fd6f5ca69d3d9d7afc6e3012eeef66f31a894fa9eae36a9a25b9df668f", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1390651788900013225613983744" - }, - { - "id": "669cf528fc9694953f5c2276cfcd99ffb23206b5df77d6fda0e6cc1f9603e39b", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1261101932094548768156811264" - }, - { - "id": "4bd98673ead28261312fcf7dce0e1036061e39aa390aee3ef63e3f2bdb390e70", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1188745872167767604890959872" - }, - { - "id": "5791d8bd5e67f5f764a56c83568144de01e26d1f86ecca533dff4da6915ee31f", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1156089550182365872055648256" - }, - { - "id": "958829ac1c1a6e999134ed44e47e76b559af1a87547648d15f6d7b540c34c6c4", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1231472621187694364928770048" - }, - { - "id": "28372428fd148ea8f28bf3fcd2c60af94e9243e9915cbbdf4956af97bd7fd3a6", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1109717177478764068099719168" - }, - { - "id": "7105b266d00fc5a9263a0c891bc7287fbc8932e4970282abb1d8dc31721f26a5", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0", - "value": "1055129567977607679532220416" - }, - { - "id": "e458e5672b9e661e743942002e5053c6ebcd894544731c7cfb5371fddbf6b07d", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1048564737222333631081627648" - }, - { - "id": "d5b4ad3937a59b3e5bd9effe4dfb2a9483b4b5470813c16cf0edfc7a68a11e07", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1374976934484670055214743552" - }, - { - "id": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2216366038787625402522140672" - }, - { - "id": "06ea06d9c4cc86b2f97fea002a15511ece279ef3cc359a2c62d980123afb54f2", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1011832844111886827150770176" - }, - { - "id": "44ca789ee822b97341736c92c590eb9752e23a51d7587ec79b3f1d7dea148e45", - "fundtype": "siacoin output", - "maturityheight": 217909, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1210062893919237233732485120" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218053, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fJGCR5FCIe0tLQPoFb7cVDqX+oJLQT+qN6OCorzaF1k=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1250625008698753897312813056", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1027168342873506666241294336", - "unlockhash": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a" - }, - { - "value": "1051601605680970050275311616", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1102107271678546254692352000", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1036952563753717459369230336", - "unlockhash": "a0bc97ae208edd060d087093029a5d85eb57d885177c03b82f2c34822f63246ed47c3041e176" - }, - { - "value": "1119870460173583115246108672", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1118388427605712911967715328", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1108013915396283377817485312", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1888213790347276397698875392", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1033702534358058768082894848", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1029910784563401439629213696", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1107215556274033268472676352", - "unlockhash": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6" - }, - { - "value": "1024271331614272995585163264", - "unlockhash": "af33fd53d292edf461219b8e13abbe0f5f551886e6c8855ab9ee31a2d5307b737d47fba15bb6" - }, - { - "value": "1001504534813565478864289792", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1098239530272511822419427328", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1050697185595010072862785536", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1006502339421368949110734848", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2158098829662201704840429568", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8778503410214821150578442240", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["128400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DQvXmzF1b3q59k9Bu7iglBeVahH8v5qAhZRgbrUZEggsKVfnk+eAYqKQfJbOlQPkHCKdSUM4WP/Xi1b+g8ogCA==" - } - ] - }, - "transactionid": "a0e1c205cfdc2c46aa86009f14a28c619fbf3a87add38525a8c813ac4327aec8", - "confirmationheight": 217914, - "confirmationtimestamp": 1564348369, - "inputs": [ - { - "parentid": "a1e26c591935fd3d95206f829b4b30e0a1ed8ef0221377ea78b3d5016501b1b0", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b0a64dafaf5adbe4750661b006ec5f4494af747c0a454ddaf7ecfedd4d8242e09b43c1f5865e", - "value": "29991715822997595781067243520" - } - ], - "outputs": [ - { - "id": "f0ecf125c0bde240949d39ce249fc2f82ae0415eb15ebf23c550d9632be38c35", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1250625008698753897312813056" - }, - { - "id": "741a463e03faa77e8e2c77d20b8927f865a6be2e0bcb27ed13e0ea6b0c92a89f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a", - "value": "1027168342873506666241294336" - }, - { - "id": "f99068fc40dd93acf9e0cc28dec58c93fdd1ae6150814615d6ec927d60274c77", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1051601605680970050275311616" - }, - { - "id": "3e9f297e58f77bf9d58b128220bcc7657ab03c8030df10f67067cc0bd5a8509f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1102107271678546254692352000" - }, - { - "id": "72e63f9cff1c3ad0ef956aecd5b1c83f7652af1da984c9e0b328972911f5414a", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "a0bc97ae208edd060d087093029a5d85eb57d885177c03b82f2c34822f63246ed47c3041e176", - "value": "1036952563753717459369230336" - }, - { - "id": "0ea3cfa19f29a52bd8bba8969708e472a6bf67d1ca13e57fa384e07379b120a4", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1119870460173583115246108672" - }, - { - "id": "9c0c632e29cd65d959e0eded3134542b8ac6a4a0fee7918fb987b594490b2ab3", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1118388427605712911967715328" - }, - { - "id": "506c61bc8e78d245b88a1f2045b4ac8a50711ad1d4a131ba389907a629824230", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1108013915396283377817485312" - }, - { - "id": "1275bb337c7097b8ebc16675d6f05472faf1a086bb4bbabb38bf1ae45cb87919", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1888213790347276397698875392" - }, - { - "id": "79b20920b09c004df8cfbababf0a72d71149f1b17e57d44f0ff785e5cb30a9c9", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1033702534358058768082894848" - }, - { - "id": "dcd6a2f43d3ec6046c7d63db20625bdaab0e60de59460bd19985245182939a6f", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1029910784563401439629213696" - }, - { - "id": "d19a840a2655d2d3c4d786ca1e58cb9676143105224f7d69d9f7938ed15449c9", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6", - "value": "1107215556274033268472676352" - }, - { - "id": "50a11c88e038eb2832736448167115bfcbe4a3c2c1551a1d0d6fae02c84202c5", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "af33fd53d292edf461219b8e13abbe0f5f551886e6c8855ab9ee31a2d5307b737d47fba15bb6", - "value": "1024271331614272995585163264" - }, - { - "id": "7f167fa5b7677ab67f0a0a94b6d7d9c696ca2bf67c6c441847532fb613358547", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1001504534813565478864289792" - }, - { - "id": "ca12f903ca277b23a0fb5deaac89586133312834c44f2335e5b575982690cb66", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1098239530272511822419427328" - }, - { - "id": "2fd2e92140fcca2c211086a6f0e8a3b6e05c03b70c40ccf20e93f535553ba9ce", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1050697185595010072862785536" - }, - { - "id": "56e15d5984c03f6e0d296b4d409b2894127a898055540470e8b57906bab43421", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1006502339421368949110734848" - }, - { - "id": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2158098829662201704840429568" - }, - { - "id": "15f7b0e25e36e9f7916f959803a33a449fe06b2328e05af226966d19164c0cef", - "fundtype": "siacoin output", - "maturityheight": 217914, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8778503410214821150578442240" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "128400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "AdD5TDYtJLpPb+ksDtGzx5Zf/4O3AICnpvgu0b+ZKOk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1021520562284807139832365056", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1349805136028407182523367424", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1112496561844932740563075072", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1049802620508871376271376384", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1144007744999072302038253568", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1069029153736123013717688320", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1008160524370913302546219008", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "1013857733652774782664212480", - "unlockhash": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f" - }, - { - "value": "1013950908704312796955279360", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1375700313236679877389713408", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2225842357202115310898905088", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9153623846861490135184179200", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["103200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pdsqqWhYnp9cheW2oBelCuWvrrKEBFL7OEUD7QyoyY1PQHQTYwPryBkjm6vsDbb2vdtpHrHtDhehBHJNT8DpCg==" - } - ] - }, - "transactionid": "05bed1a1aec14adf91393683089da90885ddc6cd6911665a07bfd270f27a9d56", - "confirmationheight": 217923, - "confirmationtimestamp": 1564351964, - "inputs": [ - { - "parentid": "04b4b4a429483552378a773d3f80b2edabef1360635acdda3e7bfd7f12f807f6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "21371e01a869c74fb6d6dab444ce811d59cebb9cba69c2e12883bf9f15d713dbd660d7c6d437", - "value": "22537900663430499960584634368" - } - ], - "outputs": [ - { - "id": "33987a62e93a86a96b2596eeb546488951e0cd649b62047a0e1efe57053a163d", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1021520562284807139832365056" - }, - { - "id": "744e3c1e912b4b5622b07dd36c871693553ee47d436449ec70ae042ebeacab20", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1349805136028407182523367424" - }, - { - "id": "c7099602fd18c929f7991af19699c66227c9c7d5270bc00f58a05a071fed5beb", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1112496561844932740563075072" - }, - { - "id": "17d5c3b42b3983062f7a06378eaed2c18653d7b38a3c7ede779c6665cbb53d8c", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1049802620508871376271376384" - }, - { - "id": "cc9dc1556e21e9d5daba1ae24178b58355f59abf13cf81694caa220e08e81a26", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1144007744999072302038253568" - }, - { - "id": "4e57d1541f0b26c484fb946a11d54046ba97085362826e57a8f8a9e013cb2058", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1069029153736123013717688320" - }, - { - "id": "1905664d9932d3a8e5094e30573cf681205737f2a874396679b284bd3a779c03", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1008160524370913302546219008" - }, - { - "id": "3c659fb61e801a1d18320c737b95adc14a686144fe0997e7edcb59c0a8be6b92", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f", - "value": "1013857733652774782664212480" - }, - { - "id": "6676e5e5e5b94a350d006001e835d449fed2ceb6ac2dbe3e46b4670aec8b0097", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1013950908704312796955279360" - }, - { - "id": "a855995d33f3cd82614e2c702137551976bc64c96ae176f3d3f70c944a30eb41", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1375700313236679877389713408" - }, - { - "id": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2225842357202115310898905088" - }, - { - "id": "9e2ffd9859baecf0c86ee4872f1eeb7108715c889b56e8a1fd6e7ab6a7d7edfa", - "fundtype": "siacoin output", - "maturityheight": 217923, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9153623846861490135184179200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218067, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "103200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "F7pihG+niTGkL0XmjpQm4DArAWX4ZmK79CcKSwQi9P4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1254290200130731380256014336", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1103718774668184395519623168", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1269433452739711468077842432", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1493327755016779839443042304", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1015019534495111334413369344", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1124459512208817886099144704", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1152088312738757486043987968", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1045392107337516755925172224", - "unlockhash": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf" - }, - { - "value": "1247326579818585901731676160", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1148256208207356880146661376", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1815829313035849533346545664", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1224003296793179726008025088", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1019480913260981462188294144", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "1017541520396081299290980352", - "unlockhash": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea" - }, - { - "value": "1189630153714879804836151296", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1222089855295828331409309696", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1033670616213494964734787584", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1025073779932910700283035648", - "unlockhash": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138" - }, - { - "value": "1051719747035075822263074816", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "2288340320019050018468003840", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9015516644151016674687975424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["135600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vxOVWqVGtWDCQr2AOSrV9IdqHKiEHlTKEhOEqhmZZtOS6lrwU/iJeFJmBhCPCwCsE+zRiRwKEyL85/pXIQRTDg==" - } - ] - }, - "transactionid": "99706e3ddf3c8fc65079879faa1ef99837b518b285a88008a6c2e2c0928d7389", - "confirmationheight": 217927, - "confirmationtimestamp": 1564355339, - "inputs": [ - { - "parentid": "78377e3b0af9c9e2f0d102142c008ff063609b6e1064e076c571f601deafc740", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d811a45977ff79ed82ffb5406e84baa00fc9ecf1d42321de72da7b51a494642d4e14197a5b8", - "value": "33756344197209901665172717568" - } - ], - "outputs": [ - { - "id": "2e58163ad662e0ab1353c8fa8021e8cb4b1b9cc61a1369bbddd2b545a6073c6b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1254290200130731380256014336" - }, - { - "id": "a742c39a70e369326d6d75afa1573108820083bdccc112f22d87277be497fc13", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1103718774668184395519623168" - }, - { - "id": "a117e17f8dd7b541daecebefad3eaa57ddb7f10234dd0b002538bca591bf413c", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1269433452739711468077842432" - }, - { - "id": "5b71d1e61060567764ff782c611cf6f84f280abab66d96661bcc9cbf9492953d", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1493327755016779839443042304" - }, - { - "id": "8954507feb37ae0ff1d10103acfcf8b53eb5ccc7d936a89ece8fc48cc9ca5e0b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1015019534495111334413369344" - }, - { - "id": "42c181487fea9f83c5a0686cf1dc28bfb446d5f5539b88128ef9e093f612846b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1124459512208817886099144704" - }, - { - "id": "946776f6acca074d03bceeabdb10c07406ff57dba070dcba2cde76dc7c3463af", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1152088312738757486043987968" - }, - { - "id": "a25189c141ae9f5703ecab75e93da7682b73d1055520111f13e885cd81929c77", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf", - "value": "1045392107337516755925172224" - }, - { - "id": "f6beb807936e278454257a9c65ed26b6549bd0090314d828f07e065b21777c25", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1247326579818585901731676160" - }, - { - "id": "3971caa77858f35266dda2aa6e3af6c35f1a8d48dd4d97c349eab4d8144e5975", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1148256208207356880146661376" - }, - { - "id": "19851e76127bb89b8871c356f3b56a729ab1ced49d9be44bef208f54710cd08a", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1815829313035849533346545664" - }, - { - "id": "115dc8801139b592542c243bb927ab9634867eb07ac285248a8861519a09b999", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1224003296793179726008025088" - }, - { - "id": "0e7ea5ab86842a2651b4bfdd7e8133696c3a29c7aa4d3831bfc07b008c2dd908", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1019480913260981462188294144" - }, - { - "id": "68bc09d2afacfaed8fbb55657d67eb9abdab668fcbe36ccb4e2632ab5d444743", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea", - "value": "1017541520396081299290980352" - }, - { - "id": "0f11b7c9e3c3a64e7e3c0b96a8e04754e6032621bbde20ed788dc01d29e0ca31", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1189630153714879804836151296" - }, - { - "id": "6b141fc4b28571336e175fece5f3365ac66af92a9d11efbfa41f3eafb6a934bb", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1222089855295828331409309696" - }, - { - "id": "ef22f923574f1efadfdff9231d17222e072ae4a04718c66d89bb4876caa34871", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1033670616213494964734787584" - }, - { - "id": "e2f0f04d96db584f0a54a5510afa7eeaf9cb58cc39b3e754e6bdbd1563e73035", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138", - "value": "1025073779932910700283035648" - }, - { - "id": "e2aad3495cd61172defa07f24b8579703258f6e98323e1f34c6b8d7abd74219b", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1051719747035075822263074816" - }, - { - "id": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2288340320019050018468003840" - }, - { - "id": "0192ba8b0f90dd17d0383e5b94590436f80887d934f672955812946804b78aea", - "fundtype": "siacoin output", - "maturityheight": 217927, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9015516644151016674687975424" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218071, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "135600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "l0UTBj5TYIvli8doXYMaG9fWy/+LzEfOh2tA+n7b2Ko=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1099477557140763626603544576", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1034287971055567679809257472", - "unlockhash": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57" - }, - { - "value": "1150019535311311953495326720", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1397128567448773269864316928", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2304601468820054213987926016", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8734116175084493251677257728", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["81600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ud/2MehcoOqCmDk7N0y12rahMIbg4p0jCk/+iFEawGDHoTwrUU4B+3YDw0TsZRigBr8+HxBEmWdiNugKzxXmBw==" - } - ] - }, - "transactionid": "ca4c058934c87edb6889b075f6cd9391c21d0ad27613a7abb35f2a131fb89165", - "confirmationheight": 217935, - "confirmationtimestamp": 1564360767, - "inputs": [ - { - "parentid": "5da42a9aa22c4cfe5e09ababd52be35d38646884168454e162766072041cda6f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "029a2fcf59efacb776be9f824f558e5dddc0c925e2b2f376b212b7fa5452e994cd1ce71ec15d", - "value": "15719712874860963995437629440" - } - ], - "outputs": [ - { - "id": "8e3e73f001cda36e98eb9a3a0b578c14ddcf1d7d91c96f396af3477df8e325f9", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1099477557140763626603544576" - }, - { - "id": "2df68dac5050f2fc3dd7dd2c2de150eb495ad7f1d716f38873b66c7cf0ed36cb", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57", - "value": "1034287971055567679809257472" - }, - { - "id": "b26a41700b84e4cb3e5cfc81cdc7e4b0e1fafcdc9e725995400e62c62c366390", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1150019535311311953495326720" - }, - { - "id": "068724ffd0732fc0302db9f3390d53d9423b727d99808820a7aa2fb7e959a9af", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1397128567448773269864316928" - }, - { - "id": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2304601468820054213987926016" - }, - { - "id": "0578b774de9d418c4a7bd6cda66b3b48213b47caa66b6c5f939ab716b6700f4e", - "fundtype": "siacoin output", - "maturityheight": 217935, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8734116175084493251677257728" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218079, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "81600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "BZrMHLwODYMQopShErz8A5XQcmPtzt/5TF9EoE3a4W8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1042369611872389027439378432", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1012632328879437052416950272", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1077067586391748777782804480", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1050911041391627266244083712", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1346632229895369436648439808", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1009638413396763964774809600", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1039595923156767828426981376", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1025370617741587559966588928", - "unlockhash": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675" - }, - { - "value": "1004338183056955498228072448", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1021554103079311066387447808", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1123875664993865058622636032", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1111488182171897963765694464", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1144911275185183893004222464", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1123027006450082115659169792", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1207935269037725194825760768", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1196170239939327237360975872", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1815726196002835302845513728", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1488242491085074877572448256", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1005546904233685942500556800", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1110006990429034085794054144", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1240691025997166706351013888", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1039917499899537771067736064", - "unlockhash": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6" - }, - { - "value": "1041638781582996987537915904", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1023493368450835720505622528", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1091452395514818397176463360", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2534320843099668530885296128", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9357108676094729804861931520", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1111901105397682918060982272", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["160800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jZ97pJAwSFkov52hdhf1x3kahwb15GCTgUxP1NxpZPprhB66Y0iV4KujoTIjy5/4HBp5OEWlte5HjgL1jcyaBg==" - } - ] - }, - "transactionid": "40399293cc91fd970015e2b9d8fa41e95871b2e2a155faca65d4db7ab139ab12", - "confirmationheight": 217938, - "confirmationtimestamp": 1564362491, - "inputs": [ - { - "parentid": "f11b41acc37fb4bcdc8ae3963084793dc036c954479f9d3e4452084e213beee3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b32f10d44a85f9d2f86378d42b6282ca90b75c7e86e64bc222e66aa11cdf3cc28e79d17ec4b3", - "value": "41397724754428105986713550848" - } - ], - "outputs": [ - { - "id": "f133b99505832126e5a6c57cd94b0de9587f165320bd50d3c77f42f5ddea9599", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1042369611872389027439378432" - }, - { - "id": "72afd64c7b9c0cf3c839c5ed1ac8e840e21cfc905368cc0aad7ad95fac883a18", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1012632328879437052416950272" - }, - { - "id": "dcddc6edaa03b20d842b08c0a50bb643564fa2bd41f861a1f14144daef14d937", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1077067586391748777782804480" - }, - { - "id": "780a1de15d8d58eb0417fda36e62e95c3f71622f2f77ab890520e9e879b8ecbf", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1050911041391627266244083712" - }, - { - "id": "7fbaf9c5498e83af6f1fc09a9b966dbb4c7d4049c494ce8fdba384858098913e", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1346632229895369436648439808" - }, - { - "id": "6c7a41d0d3f74f4f4551030cf185d039949fcb57d94470d4e394ccc471b17321", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1009638413396763964774809600" - }, - { - "id": "4e4e16bbdf8a7b9e248c493efe5abc0e5f6ef468bfb8bb980b196a94428787a1", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1039595923156767828426981376" - }, - { - "id": "f810cb5f0f8ebacc05ef1243436cccfeeb5d870f6f7232ff0359dd3afb846f8f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675", - "value": "1025370617741587559966588928" - }, - { - "id": "68306bbee627d5950795419ce8f5a2bb9ff40f9a545356cf6914e1f82566b912", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1004338183056955498228072448" - }, - { - "id": "b46deb9ee028fb44120902769a48f4abd2fa69bb75d215c37659a3f10df155b4", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1021554103079311066387447808" - }, - { - "id": "8c704dc85a10872ae0a6da4c35f9a5cc4c9fa81eb2e39258e0ebaccc2fe36573", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1123875664993865058622636032" - }, - { - "id": "ce246d1cedd43d606819cdb9696a2fd07b3826c31b37065031d9970d88f5c39c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1111488182171897963765694464" - }, - { - "id": "2738a33b4db4f6e6dd0edbe6c014fa664f56af0f0f2c043d73d43e9ce6572062", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1144911275185183893004222464" - }, - { - "id": "99a98aebeb23fd72f4b9a3cf6c65628031b738f8eb41410b28e9bacb6a16d224", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1123027006450082115659169792" - }, - { - "id": "20ef3134fe82cd5348be46e959f2b15ddfd86b74ff5a0155825868f192324fd3", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1207935269037725194825760768" - }, - { - "id": "e8e7bdb6437c12939866da31d7a642876907f365c829f6e4aca0bf8b65434c3f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1196170239939327237360975872" - }, - { - "id": "b03804bbf05b469e5bf0cc885b219c3fe17d58ed6c46fe2a7bdf838bc0341f3f", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1815726196002835302845513728" - }, - { - "id": "f536d9361f0389ec28741696bf8bc86ef015400619fc7d47b9ab1dd9e11cca27", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1488242491085074877572448256" - }, - { - "id": "b275f38959056d15dc0d016892e8bd5b5792947dce9e35feae304b294f616484", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1005546904233685942500556800" - }, - { - "id": "126359d2931048195a4fbe0b958f7656029889134a0af2530ccb52ea71d37a90", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1110006990429034085794054144" - }, - { - "id": "a8146ba83f91f36f725669436d1e00dce7f7e7962fdeea9974e30c58fde713ce", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1240691025997166706351013888" - }, - { - "id": "f435e57e5e1d2444f94641f6473012ef7aab06f93faa4a3a99c48b57d717d0a1", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6", - "value": "1039917499899537771067736064" - }, - { - "id": "211223d045ebabaff5586fd7fc31dd857d4ba8aea78678694ebfbbd41530161c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1041638781582996987537915904" - }, - { - "id": "49c4d2024f9436ead6aeede5272f3b0b648181424911e8ba4653125f54d0e719", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1023493368450835720505622528" - }, - { - "id": "7ca77b63dd4945a2382fbd1c77b7545132377cd2bb0fd62fdae7498bd9ff793d", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1091452395514818397176463360" - }, - { - "id": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534320843099668530885296128" - }, - { - "id": "791d37bd5cd5e773b1bf3c9536347b9e987466ecbf0931778856f904e5fde20c", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9357108676094729804861931520" - }, - { - "id": "4c52cf96cdaa39b0805bc46a633b88795255e0975665950ef8f5b8079f686dd3", - "fundtype": "siacoin output", - "maturityheight": 217938, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1111901105397682918060982272" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218082, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "160800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "vLapdWPZzQbZ1Dgt7lH81nesPofp0lSqy0tz4YArdOg=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1120331109114685820122431488", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1020333210290437356874252288", - "unlockhash": "e2e009cbf7a4598584cdd917479c174ad53c009f9f4477e393a6e6804278a312fb67bf889712" - }, - { - "value": "1024872769276144043838472192", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1470324719434935005191602176", - "unlockhash": "b61444705b40f45086eb61590eeea97fb193735169ba9dc8415e389d67db1d4f8f77234469d0" - }, - { - "value": "1029313198510001106261639168", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "1116224254039193406297604096", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1079538949182371198899585024", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1206483259024042343803125760", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1014359992341827931676344320", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1006794972121764260961648640", - "unlockhash": "a08f50f9f7c4d31ff04da063346cf0986f3353bd207cc6cfebec97afb7dd7828e888b37e07cd" - }, - { - "value": "1058925563174688441621282816", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1022042685631599820357943296", - "unlockhash": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc" - }, - { - "value": "1049860973832366381262897152", - "unlockhash": "c3f72a1228967e3c780b796468188c83cbe769fc8f3bcfedafaf07bfcf25c9e92b5336e0752c" - }, - { - "value": "2632123915089834831471706112", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1058369051613007626969481216", - "unlockhash": "bbd27981d0066d6ff4ceb5effb49ebab58976d9b24703b5d2a2524532365c32c632f7e91c522" - }, - { - "value": "1421252990034568392604647424", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "1048361768049931802849492992", - "unlockhash": "01f289be0a90d6bc3fdde9c3510b26a45a1e322ed4290aea48245bc4738a815862a1fb818054" - }, - { - "value": "3789177938173852260767891456", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1022253046445248579454631936", - "unlockhash": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0" - }, - { - "value": "1102465956768997277762060288", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1096106774364140266007035904", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1034709754043684065938538496", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1193700129229247627949768704", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1035018634461433309078994944", - "unlockhash": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c" - }, - { - "value": "1016645434027684920470339584", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1370758370827299647592595456", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1097213198847825557189820416", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1076684199596072554018635776", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1038466417868408828340994048", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1089555060124496427474747392", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1254294036778602064632610816", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1394926893739885702116540416", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1617615430801813197652230144", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1254999023462660559174893568", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1125941113531509250071724032", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1712911693552572228804018176", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1018588692746971986577129472", - "unlockhash": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0" - }, - { - "value": "1176381259410928811634589696", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1152501411782976315582709760", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1409302587244094391650877440", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1207850242343603830829088768", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1090624002784771593431154688", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1218021187703912879583395840", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1101119191745394217260810240", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1006456383707894184737374208", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1056254627301955478651338752", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1000262934779987588317970432", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "1501065001975912322336555008", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2457825540930172972481642496", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8930037555857941903618080768", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "x4LD0ZvmpviK1ZP/ugiDhb7Ele29wu0e3ABsL1DDI25crKXZSaDDJwpWMPEUCXS5BipwR/cm5qc3l/iNiw/YAw==" - } - ] - }, - "transactionid": "e5a3fa561ed9306e5b3c7356ac65e09bfc301ae50eb3a6af77b4eb96827ffa56", - "confirmationheight": 217944, - "confirmationtimestamp": 1564366171, - "inputs": [ - { - "parentid": "8d558317cb7a44e03b68c2822e04a9de4c35796c050a42668486aec8763d2871", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5235eff4275eec191af707ef016f4e085e263c05218672bfb3358662ca3f7411df941bf361e6", - "value": "71029487107723352572254945280" - } - ], - "outputs": [ - { - "id": "a2ed2081fe79a66e5b01802dc98922f8a3fc3e10d0ab5b20e942be99c6433676", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1120331109114685820122431488" - }, - { - "id": "db99b227256a93788aae434d06312031af9a509ae684bc483a5ba2c3e5595726", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "e2e009cbf7a4598584cdd917479c174ad53c009f9f4477e393a6e6804278a312fb67bf889712", - "value": "1020333210290437356874252288" - }, - { - "id": "8c0427f54a93ca39f76644a54a8a5b092cbcf906c30ab1dd7ee435f1ceaeab4b", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1024872769276144043838472192" - }, - { - "id": "e28f8ebc16e49f54643f50a4fc39dd606fa54028b90e59677f2985ae6cde5eb5", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b61444705b40f45086eb61590eeea97fb193735169ba9dc8415e389d67db1d4f8f77234469d0", - "value": "1470324719434935005191602176" - }, - { - "id": "f343bcfb1434e1fcc64591140bb70ab77b49aeb4124331042352c1b0e3c56ba6", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1029313198510001106261639168" - }, - { - "id": "d89089815da9308b068781c798f179b86f0024e560023357eb856efe5b330b0a", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1116224254039193406297604096" - }, - { - "id": "de4fd4b8cb68a8d16eb7addad62d816dc25bd7eeeb5968ed9dc600116e5d937b", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1079538949182371198899585024" - }, - { - "id": "b29a7becdc66d7d8f84bd39995ab55e5edc622a234947783dabecf5b7d8aeeb2", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1206483259024042343803125760" - }, - { - "id": "3859ad0d651edb7f52fc57e5ee4b3460fd411efce5a5c051714881d826acbf0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1014359992341827931676344320" - }, - { - "id": "ea2982aad89cc0595f6c56ab14c53f28960caa149e59bee4880e574e97ddb433", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "a08f50f9f7c4d31ff04da063346cf0986f3353bd207cc6cfebec97afb7dd7828e888b37e07cd", - "value": "1006794972121764260961648640" - }, - { - "id": "7321095f4d095d5211f5760313d6a41c83a318fa61c647494d091e4f16602ab0", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1058925563174688441621282816" - }, - { - "id": "501826028c5077edfdc875f30a5994f86c43cb6a521a2fe03c3652002a51d04d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc", - "value": "1022042685631599820357943296" - }, - { - "id": "f8c332c005b009a38cf94128aef56362f0549b9230033fd75139ed341d24ff0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "c3f72a1228967e3c780b796468188c83cbe769fc8f3bcfedafaf07bfcf25c9e92b5336e0752c", - "value": "1049860973832366381262897152" - }, - { - "id": "e1f8f7888a58415c21513c11ec9ad8e1efeb747a26ea1cf916b681fedb290316", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2632123915089834831471706112" - }, - { - "id": "1e52614bd722577e18167bbb570205238b726d5543cae9bbf7ae11f671310f0c", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "bbd27981d0066d6ff4ceb5effb49ebab58976d9b24703b5d2a2524532365c32c632f7e91c522", - "value": "1058369051613007626969481216" - }, - { - "id": "6b5a4398cde6321351b22a57bfbc6a9921e859d19d703d447c6a37446c22fbef", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1421252990034568392604647424" - }, - { - "id": "6891fa53663cce6e88b6ad5f78e3f2f16248b4ffa8a162b4bf6906b9e2100663", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "01f289be0a90d6bc3fdde9c3510b26a45a1e322ed4290aea48245bc4738a815862a1fb818054", - "value": "1048361768049931802849492992" - }, - { - "id": "111b4f2f1dda2afd55f1fc6bd063b5a7e34a2b214d4c6429ff94d488327698ec", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3789177938173852260767891456" - }, - { - "id": "93caa987734ab4eedb7e29c7a4005af2702af57d9f86e84d581306b419f07edd", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0", - "value": "1022253046445248579454631936" - }, - { - "id": "47b7ed9e196b2dc7dbe5b5104beb04fc8153db289fb7ed60b54bad4e0ef88ee9", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1102465956768997277762060288" - }, - { - "id": "b1076cfb925e8ce0e279fa317d3c67da3e89532a5f5432a26af43509a54964a2", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1096106774364140266007035904" - }, - { - "id": "2b1713f269c4b840952fd8fcb83e4b087dd5df6a494a4392bad8e2e87dd31b69", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1034709754043684065938538496" - }, - { - "id": "2a8e686863c593d55d6f9db6c7e2a90937315b1b0773e0597e951a81caa4dd38", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1193700129229247627949768704" - }, - { - "id": "c6ec13a299f2f88f397e68067b55d0e06513f27413ecb53968101e330c169c35", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c", - "value": "1035018634461433309078994944" - }, - { - "id": "64dede4f6bd5329e0d5e1860edbb7dfbc1ee503a00c408aad9cf781ca2f96a0e", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1016645434027684920470339584" - }, - { - "id": "cd6541e8f5b648ceeac1fcded2dd3bfa106c8d5f26964b9d09941ca88029633d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1370758370827299647592595456" - }, - { - "id": "c5073f9ccf4f0eb5c6d878d0f404df9a259d239c9f515f374abb2893931dec50", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1097213198847825557189820416" - }, - { - "id": "c6ee1f017b491a271a9d78ae0db2814ba82ace32a6191de38fd9efc576fde91d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1076684199596072554018635776" - }, - { - "id": "57c369b6d77edd0f8d14be684263ac54a874070b207b6ed8aacb188c4c4294af", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1038466417868408828340994048" - }, - { - "id": "3d25ed18029afae1788414f4004ec221b2e1b50a7ba7e9f967824fe3410a9864", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1089555060124496427474747392" - }, - { - "id": "0268f2fd362f02f0805091fd06f31c179e4db3d2a387160bcf5088bbfcd34a01", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1254294036778602064632610816" - }, - { - "id": "d78b6f9e5a7688b63bb6c01ad62998a726bb8eaca7c5d27d54e0892914da905e", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1394926893739885702116540416" - }, - { - "id": "d947c088fd0bf4693aee94eea5dee252b2763f2670a7ee815c39e5e050a70802", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1617615430801813197652230144" - }, - { - "id": "3abf2aef0d703400eab439d4cc3f9d5731164130afc4b2a592f8b16974cb995d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1254999023462660559174893568" - }, - { - "id": "ccc3a31a5e6fa2eba74388cda5c9b75a4eac1e25813ce69fd7124a29c6a619c4", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1125941113531509250071724032" - }, - { - "id": "a8b115161d92a102ca60b481691671c0cd38d1b0a490963ef41ed350fe36d508", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1712911693552572228804018176" - }, - { - "id": "bb523f5debffb43af1ad130bcf543e9a303e18e0560941fdc4a7f6689b608c42", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0", - "value": "1018588692746971986577129472" - }, - { - "id": "ecc9d852dbba251ed74908679c8841deb90ce4dbf93deaac858cdf3ab9be5733", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1176381259410928811634589696" - }, - { - "id": "3daf35481e3fdb1bb8bceb7828cf5c43b82211a41e4d0e1d0362d8d1e7fb1a83", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1152501411782976315582709760" - }, - { - "id": "b9cd8596d8369bbeb26f83c26ee92379e44f4c7bd4e4b36daf5460d6535d9131", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1409302587244094391650877440" - }, - { - "id": "135c2c4fd8c5073cff2de28a85a2de845bb7893aabba13647e33daa4220ce701", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1207850242343603830829088768" - }, - { - "id": "bcfd52a97d69fe519dd97213e7bfbadd16c6bfa35beacca5822a343a8ec4a0b5", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1090624002784771593431154688" - }, - { - "id": "9d0f811c04f7fbb7901068e7bbb21c088fb093c18a8bbd8bc938299574d4a949", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1218021187703912879583395840" - }, - { - "id": "51ed6ca12df368f6d2b236c56d47f915fee5005d968968c682e0de9cd2603549", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1101119191745394217260810240" - }, - { - "id": "b9b8ec58be33aec642452ffe952f26491fbffb973e985bab7156f30ed856f30d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1006456383707894184737374208" - }, - { - "id": "4515769e29fb5d74a0a5fe1e407f896c00eda420f33e14ede8f49db198e4c002", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1056254627301955478651338752" - }, - { - "id": "83481c046c6a36cbedf41495128641eb07ac2b68b4c0b1f63e84c067d76ba5b8", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1000262934779987588317970432" - }, - { - "id": "0cf3601181f3c57009b9394e6ef6f0e96019763d6df0b4ffb0f7b7ac1790b337", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1501065001975912322336555008" - }, - { - "id": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2457825540930172972481642496" - }, - { - "id": "2bbd68ec995121e083937450449ebac9f067c90aaf628c62f85691aa16981e3d", - "fundtype": "siacoin output", - "maturityheight": 217944, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8930037555857941903618080768" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218088, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "sF5xB2WvqgF1JcAKux2ImYRiQjD1C+LB3ycApNdmLFI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1012873762248010370125201408", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "1354332852437580418331967488", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "1198361091479090756543545344", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1063043053006930492938747904", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "4030712836195064318498177024", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1003909922963141961472442368", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1027539442342307284090159104", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1001041701991215833699483648", - "unlockhash": "5593d3e5b36074b24960409a33d8162fbd37aad90c29a851f9f3c189b64601fa3622f285f96f" - }, - { - "value": "1067113898027109134894989312", - "unlockhash": "07d2d4ccb058ddd388ebd9ff908d1b79d571adebd0ff9562a35968040f42aec835c41f3203a0" - }, - { - "value": "1032439911446270824131133440", - "unlockhash": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408" - }, - { - "value": "1209846790884468005031903232", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1068924130905609336327831552", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "1010957476838871153809653760", - "unlockhash": "eb4b9467ea953e0c25b7f4556905402ed63295544f0f0966c5fe7523ca137c87998fcda3dc57" - }, - { - "value": "1130339656246114012892889088", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1032574584726284103326236672", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1051220993106308741670567936", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1135560146600562702963179520", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1020394603875863209824485376", - "unlockhash": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d" - }, - { - "value": "1075548054817332965983846400", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1271103798301636220495593472", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1017812174966284455391526912", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1051727466748551501219627008", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1036573097991397839584198656", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1185594702293140896360693760", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1093006746700423011184345088", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1038788658371745711479586816", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1157810315702297643709366272", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1246909376898063709937336320", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1207702275959864868382703616", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1826316696109798043333689344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1038611764057362054335430656", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1064473541766709623380901888", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1055713972907782173010952192", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1006084806764243778394619904", - "unlockhash": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f" - }, - { - "value": "2604748042541934141308403712", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9418193904293247927256612864", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1022252749909301834216767488", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["193200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "z10kbJXTx0ygRhtMzRNXvaPnzVTaVqW+x9/xruLXXIaDy2vVyX400AYDEyHriwhE5FV0AAQk0c3nZ7FX0eVcBA==" - } - ] - }, - "transactionid": "070eee7b6f3a11f1c8b25b3606343b6e3b9f2c9a34ceed48f8e70f7b02484ef6", - "confirmationheight": 217948, - "confirmationtimestamp": 1564372317, - "inputs": [ - { - "parentid": "71d04e9baf93ba0777aaad0bff6b78432fe2134eb2a3783e9ebc9f95e9ca6ec0", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d1129389c6e33e7fa6dbcaf86bf33fc1cac567c385952126ea2546c726d8537b07bddd0acb9", - "value": "53870352202421921059538796544" - } - ], - "outputs": [ - { - "id": "8f3d366cd7c0fdb34b384be6addfb92e2ea7d7d90191235ff834bc3425f0ec5d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1012873762248010370125201408" - }, - { - "id": "2a0c076a9bcd6c6fe844cf873074739bb158f0868267d6ce343a88b552a4be0c", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1354332852437580418331967488" - }, - { - "id": "4baf11bce591fde0687db1446aa56c25dfffb91c6aa8efdbb3e1478d1b253704", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1198361091479090756543545344" - }, - { - "id": "d7b18296c5fe8c021389e15a7c4c88c8232796908b89475aac06b2e5917f2fad", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1063043053006930492938747904" - }, - { - "id": "7a71fc8ad75421e6c48893579dab3511fe9d43534c35df1ea56229f9f511f9db", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4030712836195064318498177024" - }, - { - "id": "39e793248acc4d6909eb3a8e882930a76ce51259689932715ad9ddee203b683a", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1003909922963141961472442368" - }, - { - "id": "de16f6468d71d4e773e19ac6d4854df185822f58b2a6a5209ab053d9812a57c1", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1027539442342307284090159104" - }, - { - "id": "3a53163bc044c9ad19cb7ae85162091e81a815e0c12f0d152397ac7cbba39245", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "5593d3e5b36074b24960409a33d8162fbd37aad90c29a851f9f3c189b64601fa3622f285f96f", - "value": "1001041701991215833699483648" - }, - { - "id": "a55f1ca47f26d6ebee387ca03f6cdcb6b341d9cd33a3d41a0747480ca8bcf7f6", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "07d2d4ccb058ddd388ebd9ff908d1b79d571adebd0ff9562a35968040f42aec835c41f3203a0", - "value": "1067113898027109134894989312" - }, - { - "id": "ddf33ed0136d0ab13bd082669dbbcd2eaa09247a183269e2fde24781efdbb87e", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408", - "value": "1032439911446270824131133440" - }, - { - "id": "a89df42c650407870a2e5c4ae7f5f345febd6e09e0ab687a3d61b35769adf448", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1209846790884468005031903232" - }, - { - "id": "555e97a88d885995ab82f0c22b33d27978d5785b13237113d5ac6a8c2a0ace19", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "1068924130905609336327831552" - }, - { - "id": "7a2e14b48cdcd3bc28af13714a2ca1da26a7be947523046f6485e832ee1cb37c", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "eb4b9467ea953e0c25b7f4556905402ed63295544f0f0966c5fe7523ca137c87998fcda3dc57", - "value": "1010957476838871153809653760" - }, - { - "id": "9a0b871c002b2297001ce38b55ddb178961d674aa027fd11fffbf7d8bbd7fa99", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1130339656246114012892889088" - }, - { - "id": "e58337d55344631c0cd68dd94840a1fca92f9fbb425e1623fddcabff51de388d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1032574584726284103326236672" - }, - { - "id": "80b543fd787b4825d39f3dcf7bdbd432941cbc995773fcd043133149024b88f6", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1051220993106308741670567936" - }, - { - "id": "59efa5da629bf3f899e19fc856546c5aee2f33e154e80f799e80a368a4fcaa61", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1135560146600562702963179520" - }, - { - "id": "81183cca5785fbb5c31a629db5136742a00fb22cf8e9beb644aa9127a6da9fbe", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d", - "value": "1020394603875863209824485376" - }, - { - "id": "2d55156f0a5059ba758eff04793c7ff5899be0f3e57d3cbb5b4701b3a3dccd72", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1075548054817332965983846400" - }, - { - "id": "3687226172de65e91632a171d0741195ffb3540d2694ad8d1696acded5aa0e83", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1271103798301636220495593472" - }, - { - "id": "a2d62102e695b58e5351ed53352e4fe89aa26e7f109aee285d2c420ca35cbefc", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1017812174966284455391526912" - }, - { - "id": "df53472ecb29ca3c75473112045ca512dfbc6e6a007334665adf0a4b415a2373", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1051727466748551501219627008" - }, - { - "id": "a917d361bfe909c9a10e695d089c972a21e1bed74889b908f41c856fde7ac521", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1036573097991397839584198656" - }, - { - "id": "bbc8f23ba1bc7391c265b9e386266e7ce3a8b4b8e0202cd4968742c6c1c7ae0d", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1185594702293140896360693760" - }, - { - "id": "afa44c659e6838cd536aac6faea0463565035ff42708bccbb7f5be04e575c212", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1093006746700423011184345088" - }, - { - "id": "ce6f4292dc5736aaa7e235bced19fca6a55a3ede88ced7ebcc331cd51ab3a3c2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1038788658371745711479586816" - }, - { - "id": "3b52a9acad8a58a4a5e6f7799e5847a92759a6cc54abb3cc93a6b11510266b6b", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1157810315702297643709366272" - }, - { - "id": "1d955cf5ad9fd911a1c82960ed66d33b3f5ae3a76d9114aec0d53408801214e2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1246909376898063709937336320" - }, - { - "id": "8af6ae65a392ba4b8f49a9112bd9d08a0bf68d096257ff35ed239bac32361a73", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1207702275959864868382703616" - }, - { - "id": "01af1b274e060ff66d88d5b7b89e8a6cd0bad5cb23be8227aacaa4e7cc8c4222", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1826316696109798043333689344" - }, - { - "id": "7d58809a34a068afab41d31aad092611506044004148d2424891551cf02df695", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1038611764057362054335430656" - }, - { - "id": "0480a74b8f59bee2fd69d0c8dec1745a9e353e7c6b41cf8adf5cb0e8a1af4acd", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1064473541766709623380901888" - }, - { - "id": "56e0aefacc35f9b87408664aaef76b5bc1ea27c63e8e7b2d6d9c3f3538bf11d8", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1055713972907782173010952192" - }, - { - "id": "f4b16533522d658065de042131b73a93061129a53ca6ba2bd450691182a849ce", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f", - "value": "1006084806764243778394619904" - }, - { - "id": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604748042541934141308403712" - }, - { - "id": "4ddd21823ab417594fbb0e0fbcd8cea3888e5ebc210e98cffa210e012fdeeaf2", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9418193904293247927256612864" - }, - { - "id": "59f1b0706da858c97e5ae737846d0b556e839b57c0fa7da863fcf44e9bd830f8", - "fundtype": "siacoin output", - "maturityheight": 217948, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1022252749909301834216767488" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218092, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "193200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "rJHiivveVuxbUOGfR0MvEq23FybcVMGN+1KhZq95C3s=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1032474076144083393257029632", - "unlockhash": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c" - }, - { - "value": "1060698617241292354596896768", - "unlockhash": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f" - }, - { - "value": "1154747214708898324917256192", - "unlockhash": "75c22739b3a0fef97d5ef85871ff02631bd33e792049ed6c9b10a9bf64e2bbbef3acce5b0f3e" - }, - { - "value": "1490728286257166371364274176", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "4022018644848581265651138560", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1039415610367159168067698688", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1054516142974615534164901888", - "unlockhash": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76" - }, - { - "value": "1018527252004404598833856512", - "unlockhash": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57" - }, - { - "value": "1127931132090180219395112960", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1228649093341161138752061440", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1006995224152919669458108416", - "unlockhash": "61dc57c76b4ed71ced11e2d661a65c954e773e20966a6dbf4f86355ca2b1b315a0b7b6ff1c39" - }, - { - "value": "1128631273403475687839891456", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1148540460542830796334956544", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1031393957590228095170117632", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1102583480225364236213157888", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059102565903018629750390784", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1128039731351960872441348096", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1314579257823032337957388288", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1173864765766146715297251328", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1379722520518350472435728384", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1127279613699365492337410048", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1693875595978618911288459264", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1306868835877015024699441152", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1736777819192677359895445504", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1148255894405684767778668544", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1175655178858417460036501504", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1064803401963968074492968960", - "unlockhash": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed" - }, - { - "value": "1416327999532888279211835392", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1039657837509062687898992640", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1151892414382182511543320576", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1216508577334828797747003392", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1097152749437081549274218496", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1016908839412792885477048320", - "unlockhash": "e745eaf761c44f16ffa820db66316fad1fd052d61bdc5a3f3f32f52237d1516ab8755a03d6d9" - }, - { - "value": "1514918458889780919918395392", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2565575982412103390584635392", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9235238813245678761677946880", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["189600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gjsTb21EfKhcQ/W8r2EduTl/aMK6y9If9yODt9UTreqRLY3BXF2aujOqkEZvheDn5o1jKTObPtv0a/vOKxezCg==" - } - ] - }, - "transactionid": "d2a5b57a635bec91e395283b716b8ff6f78fb51e4abe2633d13046188c298f7e", - "confirmationheight": 217950, - "confirmationtimestamp": 1564373334, - "inputs": [ - { - "parentid": "ea34fa4f83d222e411ab8f55175db61e004e9c7ec7773ea3961033b2fe7ea8fd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5ca905474656d9eb93d7b0e3c07244a8ec2e7d83f13a16611174da39c9d2814763bf6f2a04d4", - "value": "55211046919387016755760857088" - } - ], - "outputs": [ - { - "id": "8b8277b210109aaa85a5e79d6d353faa1a0067bb307a40954dabf15b181b3513", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c", - "value": "1032474076144083393257029632" - }, - { - "id": "cf5f0b8c515aa64e0bbefc967ce2c5ca8bf51e206396050a1688246ed7c803d7", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f", - "value": "1060698617241292354596896768" - }, - { - "id": "4447878f17f37f251fe59061348bcde669b50d5910d918914a83ade1aa3df5f4", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "75c22739b3a0fef97d5ef85871ff02631bd33e792049ed6c9b10a9bf64e2bbbef3acce5b0f3e", - "value": "1154747214708898324917256192" - }, - { - "id": "30a869a6292c60855ea6d2e66853032a7984a47b292fa47b63d5340e617343d6", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1490728286257166371364274176" - }, - { - "id": "bb49104d64692f28df81aa16c8438488cb986d51689c555c1e97b6a61416d8c5", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4022018644848581265651138560" - }, - { - "id": "603c3e5caac134b433017701c4e5a5f723862d4374c683062e2d7f6ffb618d81", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1039415610367159168067698688" - }, - { - "id": "916ee822786f4e6e5dbd0081174da0b261d543ee346c75cc3a31ce560008a70b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76", - "value": "1054516142974615534164901888" - }, - { - "id": "c76f579ee296779806156b23ea8a30a3c6de82a86f42f4daa1dac867176e94f3", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57", - "value": "1018527252004404598833856512" - }, - { - "id": "9cbf0c9c725d90640bb8dc79169be69bcdd94e1a21c6a579875a2ced8bcac980", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1127931132090180219395112960" - }, - { - "id": "82843e6c70a12bdb3ac4b1ba0d536e22c4833160310956c6bccc32e336030c94", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1228649093341161138752061440" - }, - { - "id": "17f47986d2ca394248ec631582c91374b398d4f2f48b7b431eb2de00c56c2ca2", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "61dc57c76b4ed71ced11e2d661a65c954e773e20966a6dbf4f86355ca2b1b315a0b7b6ff1c39", - "value": "1006995224152919669458108416" - }, - { - "id": "5838a97f71c81ab47c54f250db9ebc4e6e909a8ee51f1cd037b9d14e3d7f4b16", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1128631273403475687839891456" - }, - { - "id": "3df3b9f71d31db42cf4dde78cec81f35ac1dcb481367ccd3dd8c146ff98a6c21", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1148540460542830796334956544" - }, - { - "id": "cbc45f51dd0b07232f88d59ce47d25dfe9dcb22a11ca27a4a8caf0c30a12348d", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1031393957590228095170117632" - }, - { - "id": "9b49e0b221ee1adc936a32cf77e72acfe9d00851e235994b56bbb91c81fd26ba", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1102583480225364236213157888" - }, - { - "id": "c56a42bb586f825302515d5608ead5ea9d1d995c5af66f493ed855f5a32a501c", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1059102565903018629750390784" - }, - { - "id": "76915844e81166b2beac4e79147ae3ae4e75fe8425ada2e6c80c56d70d880e5b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1128039731351960872441348096" - }, - { - "id": "623ef8b98e89ea0a5ecdfb0a5b018d0b545cd6dcdb930b9d70f178dc1e729e7b", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1314579257823032337957388288" - }, - { - "id": "407d09d739deee9bffe27f6e0e2ed252a829cc02305baeb61c0517eb9cf47f90", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1173864765766146715297251328" - }, - { - "id": "d9fd49681816bd2a34238149dfe59d1b7052fc5e55d5ea50619a6a5c08816fff", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1379722520518350472435728384" - }, - { - "id": "f690b696715d18d2c006d388dc1eab0ec6158c003399509134c38b3472998048", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1127279613699365492337410048" - }, - { - "id": "83e6ea0c8b8b1eba906b2490ecec1dc368dd716aff10ced10cf7fcf35766a17e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1693875595978618911288459264" - }, - { - "id": "f5d1318f2aa76f010a1225de51514fc3e702ca077b1ee5e84924cb92b8cc779c", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1306868835877015024699441152" - }, - { - "id": "4b6fd204100a27d57204548c7aafaae57433e439885eae2a1933949128854da2", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1736777819192677359895445504" - }, - { - "id": "1af1fa0b46c55b933a529e9f6b6f4813c55bbbeb19b243b42721a1f046f10a32", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1148255894405684767778668544" - }, - { - "id": "194fadd85336298fcb4980b4fc12769c5439828fde5c4bed5f0f8719132e5fc8", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1175655178858417460036501504" - }, - { - "id": "228ed9415b31a4e6684761e39d0439ae51cc5aa18235f8dc59153c37145ba1d6", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed", - "value": "1064803401963968074492968960" - }, - { - "id": "bda797fbac5733b49fc816e4808c5627de85a4eee9cb08f53b8b9b50c1afb18d", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1416327999532888279211835392" - }, - { - "id": "50c16ee98c94d03a486b73cd7c318761aba86965c4747c24a8940a3714abab0e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1039657837509062687898992640" - }, - { - "id": "317d0502114c724f5c7e19a61da20e0a1e7b09fc61883b0524022ee214abdee5", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1151892414382182511543320576" - }, - { - "id": "71279cb7f4c3daaf3358845c6b24e5f33e33cda8980a38778365ebc669b93419", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1216508577334828797747003392" - }, - { - "id": "22865292149842254d845d8302fdee9aca7d709d1e5ebe1428b62e6dd7c3ef4a", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1097152749437081549274218496" - }, - { - "id": "391a23532bb53a6a60e8617d6c12f9cad07b8ecab5a227aab8e6ab5276a956ec", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "e745eaf761c44f16ffa820db66316fad1fd052d61bdc5a3f3f32f52237d1516ab8755a03d6d9", - "value": "1016908839412792885477048320" - }, - { - "id": "085ba78876a77a365f33ce426d3a46f3089c0aa9f59691b9a527d7fa5d124fef", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1514918458889780919918395392" - }, - { - "id": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565575982412103390584635392" - }, - { - "id": "939f82101c08aeaa420b8ec463db86bbc3ab815de111e838abe81e9602f2ec69", - "fundtype": "siacoin output", - "maturityheight": 217950, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9235238813245678761677946880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218094, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "189600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Y3AubnqzpwtMBcesEgCdeb2W75Pi/Br3Fm2C/yu1dqw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1015523576760697551430090752", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "1042509012239270891495620608", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1076861108568679627845632000", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1132139477607903864149770240", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1080452978676376549987975168", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1056470188457650160000008192", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "1084752482350001007275802624", - "unlockhash": "b4f3c8897699e1c263ba2bf46cdccd45cd4f23cc79a7505c310b285f23ad4aee4970dfc13bbd" - }, - { - "value": "1067630882718074936673173504", - "unlockhash": "0a6b40fcc0a0170b4cc3a0d84d06c9db36b286b831d16970136e1a507b05d19d55239eaf4ae8" - }, - { - "value": "1769023379916075822594654208", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1007378487108126180033822720", - "unlockhash": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207" - }, - { - "value": "2564169243651529866070720512", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1152070341841119266124070912", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1060605954811909432148492288", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3835181545664268844033638400", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1086258590760870433231470592", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1015935325660315423007670272", - "unlockhash": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce" - }, - { - "value": "1283853996297244872717893632", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1067847066201208451107307520", - "unlockhash": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357" - }, - { - "value": "1341472875292496924553248768", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1056539794111095522838183936", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1090950582155312727117004800", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1031175568316229176026726400", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1166927427248429245612425216", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1006517419798194847880413184", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1291164597272727908079632384", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1006645080961279944036581376", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1016012632258998901025538048", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1007994043260509378711339008", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1157106974101072242699665408", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1166893758160981756812984320", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1227060660341485714433376256", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1188815927139859729634820096", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1902355424082529485565460480", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1061214587570432262466535424", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1095340611124135775786631168", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1042083579530673435329052672", - "unlockhash": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d" - }, - { - "value": "1252701651988686744542773248", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1088950549462786983460864000", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1150603800814266904309923840", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1146606769536088195879010304", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2463018105876406900742946816", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9289189680606770607316533248", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["211200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "O1QQ8Fm3lhAuafZMgFXdJcxHBc2K49vU77C+Y8120yGK/MV4Wly6fHiyQjenX1cS7OP/xiUGensbJ14Pz5o3Ag==" - } - ] - }, - "transactionid": "f4198f50e83c5d15d6d9ce756a20d6b27b23848fd9d8fcc69be8faf8b3170d52", - "confirmationheight": 217958, - "confirmationtimestamp": 1564377143, - "inputs": [ - { - "parentid": "daa553f2f72c2cf187c789c3e7088c6a9f0848b537ea888c7df4a5b29d701e4d", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "c25ee0242f8482a1fd2f4664b5153712802e56d8e29fa130240c18e91ee62af2c315b48efcfd", - "value": "61646216940302774494789484544" - } - ], - "outputs": [ - { - "id": "f4eb48632e9f1ada06261b372c8606aa9c7c2fd3913dac4643c8f776c070c13d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1015523576760697551430090752" - }, - { - "id": "339962ad5c737ba96c3b7000ae60c242276b012b403cac977762e00bbd40ae57", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1042509012239270891495620608" - }, - { - "id": "82512f3f8a82e3c2b418d4444fa334a417a7380ab1609eb4b2cb352d93b7a738", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1076861108568679627845632000" - }, - { - "id": "ed7f8c5833027db4da42d3fdf271807f1c37f54cd61a80458fff3d02fb7be571", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1132139477607903864149770240" - }, - { - "id": "4385ae9b160e729143a65f2bdd4fbc36201cbe4985c16e70df4e0eb74c5e5f73", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1080452978676376549987975168" - }, - { - "id": "f2270d1c2d8c635870ad934faa375b04c8009bf26be4a6616c33593fb8e8ef85", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1056470188457650160000008192" - }, - { - "id": "3faad382f6df0559817033ce67121b9e011f68ce82599db20dbcf1e420b79430", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "b4f3c8897699e1c263ba2bf46cdccd45cd4f23cc79a7505c310b285f23ad4aee4970dfc13bbd", - "value": "1084752482350001007275802624" - }, - { - "id": "e6a6eb4444270583c97e1c0ea6945d37fee181359761deb20e1d5a9cb7c34734", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "0a6b40fcc0a0170b4cc3a0d84d06c9db36b286b831d16970136e1a507b05d19d55239eaf4ae8", - "value": "1067630882718074936673173504" - }, - { - "id": "d9207ef15d42fd2bb02904a255d07defa3f24ac27bc9eda08792a5e9c12752ca", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1769023379916075822594654208" - }, - { - "id": "795fe99de4d6b0d06ac5a09cde608fdbdedfa8746ce8e187dda17401f0f4c1b4", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207", - "value": "1007378487108126180033822720" - }, - { - "id": "5dfc16ed3c5c1ce899cc3b5f808548112b13dbebc66ee7e0fbdef83287dc99da", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2564169243651529866070720512" - }, - { - "id": "1f3644bc95240c666ac8e6bad9aef31b63e67170315b3c27f97b0d5b17f8618d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1152070341841119266124070912" - }, - { - "id": "76ba7a6ce672658046fcb2c4ddfbbf1f24076c3666223903496435fbc2e7e308", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1060605954811909432148492288" - }, - { - "id": "ae5eace1c2d571bc88909ef9bc1d7c0969039dff5d5cc170eb8181b4576e8a95", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3835181545664268844033638400" - }, - { - "id": "7108b458a69622cf75fc14974075429199591479b16627c5665899c7a2692267", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1086258590760870433231470592" - }, - { - "id": "c1abd8d35feefc08cefb88ef903e054514bfa38dedb36c71742730fcd040298a", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce", - "value": "1015935325660315423007670272" - }, - { - "id": "23739405eb69dbf362a04fd16bb38831c319eec8a98ee696d466f2a3a64ec03f", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1283853996297244872717893632" - }, - { - "id": "bc282d540e522bb337c306e5beb8acf45d066e907337a973a549789c9ffb7048", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357", - "value": "1067847066201208451107307520" - }, - { - "id": "e3685fa256f77c8a6f03ffd9b2c81e8b26ba98f72f2b21a41a6fbc4f7b01e8a7", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1341472875292496924553248768" - }, - { - "id": "b44735697fa4e90c7795461ce9b0d0606b09348e414cd95460c262e59bcc2075", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1056539794111095522838183936" - }, - { - "id": "84c49e263ed023354cad08b8cf10e40d2d570918f6f0e0d41a7cac1a44f2b331", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1090950582155312727117004800" - }, - { - "id": "73bf2edece26805dae3773cd556650a04c247b5a2bdc3e6fdf98e3fff3ced66d", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1031175568316229176026726400" - }, - { - "id": "c3ace16d8c6a3dd8f651371ab91fb60550baf2eb8f33cc3d1034708c396fcff3", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1166927427248429245612425216" - }, - { - "id": "c937571dd864240599dc65600fcab7eb61e82ff20a7574ad546e670451f861ad", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1006517419798194847880413184" - }, - { - "id": "c35e1dfb17c7d1c877331ad8ebe303ff2fa2dd0ce65f2a74aac5f00c55925604", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1291164597272727908079632384" - }, - { - "id": "f2c5107f05a3713692849617ce818b9a4446bf0779959b41df1c90df8833eab6", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1006645080961279944036581376" - }, - { - "id": "fb31bf4900bf27bfafbeb87321e43b7136773b2e655304d6382011ff78b2d361", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1016012632258998901025538048" - }, - { - "id": "17216f4492118cb8659aca1ba13b31eb4ee3caf38c0e23fcedc23687dd37c050", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1007994043260509378711339008" - }, - { - "id": "205c59ee10f42c1eb7e90c721e0cff8def5619f3815d82790c3319cad25175f7", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1157106974101072242699665408" - }, - { - "id": "ecb5e006d72e8dfca7db0120051db8eda6d7ef47f4a9a0ac240c8824ba7e7d31", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1166893758160981756812984320" - }, - { - "id": "be02b47c1fb5dfa85bd4630af7cee979a1e2a7b353421b5cd77c025a4b11c1bd", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1227060660341485714433376256" - }, - { - "id": "a58ee80b3e4a262ca941fd035b009549aeb40d5269295ad05f758d2d59b21e2b", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1188815927139859729634820096" - }, - { - "id": "a2e5536258ddf5d0bae6019d7ab14f4fbe963b48317a204f8c135b163eefab10", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1902355424082529485565460480" - }, - { - "id": "099872289e2b8172c2ad42f0990066b490b44d81fe4f8801a742cfa7df81b7d1", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1061214587570432262466535424" - }, - { - "id": "8b92253613aaf36600493880a35ed2522263ff388554fcdad3747d86cf3c03ba", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1095340611124135775786631168" - }, - { - "id": "6099136e786a3ff4dbe37728d685b7dc454d3357aca6a2f589ca5c6e7c6804ff", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d", - "value": "1042083579530673435329052672" - }, - { - "id": "7852d74248b508f408cafd902f38e8634355cb07f42d534629ad8aa1e186a132", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1252701651988686744542773248" - }, - { - "id": "7bb3a6c5fe0502b738a0889efda5bc666ff4a3db0e6b5fceeb1e3b2df9dc2fab", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1088950549462786983460864000" - }, - { - "id": "1d942941d2155246fdb7d4f934804d330e4a79d06c948c3131f57cbadbd27d0c", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1150603800814266904309923840" - }, - { - "id": "9fb31174f02ef02bb36e6da291c8a8a97a7dd138e35421dad2b2f10e65d3019b", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1146606769536088195879010304" - }, - { - "id": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2463018105876406900742946816" - }, - { - "id": "ca02e3079b5ded60f7e91faac30cc6b15882547ae973e12db705dca9da9c860f", - "fundtype": "siacoin output", - "maturityheight": 217958, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9289189680606770607316533248" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218102, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "211200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "+sB57PzMMbL1pa8afl9tirsQ8grc8LLEzR6qC12uEwI=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1132173828365581994597810176", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1000558147213888539477934080", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1263729633102546796409782272", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1004474924095124472617762816", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1465239077152221086425808896", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1437142528565016146235883520", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1164251918516409043325550592", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1076683559043877638373638144", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1302903316649871235112501248", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1246334414463852216678612992", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1059459785758730390079340544", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1018735742056576180025163776", - "unlockhash": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472" - }, - { - "value": "1055414511436301084021096448", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1087287693542894512647831552", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1517295669339621091766697984", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2527370977241186333339156480", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "6279804937135407280368123904", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1200296098409439929374867456", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["124800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ngTAFc9aQyFcAJW6EUZ4dLE/kjG56Cm5bDOwDpMMx2190cUl0qOUJ880oJWJ+BS63xwTPi2PlsANL6iwDD6UAw==" - } - ] - }, - "transactionid": "db0c37bd0b6f3ce3aa08662cbf9e7fddaa3ec5f00fbdb119659c9a3590f4a514", - "confirmationheight": 217963, - "confirmationtimestamp": 1564381019, - "inputs": [ - { - "parentid": "4ac88e381210c84c0b9f710188f5aec4879b512c43f91401facaa290557f51c3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d02436079d42caebbfea222eeb35d20f436630d7c32c370b61d22f5713ba04aab257b8b9465", - "value": "27839281562088545970877562880" - } - ], - "outputs": [ - { - "id": "b26a436c5bbacb0c9d4259fae3b4915889f1aec4a700d4333011d37bd067d9e8", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1132173828365581994597810176" - }, - { - "id": "2cd22bc3b505a89c876d05ed38726e0f330c00bfee6393d80b2d83b45d4c3f8b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1000558147213888539477934080" - }, - { - "id": "0fb9bae3760c2b3f7068103cdb67adbc5e0aa3ecd88b635516ba69365f0b9352", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1263729633102546796409782272" - }, - { - "id": "80cfcd98f188547a9620445b4aa24ca56de6bbb057ef8f82f7be6d0cc3e7ed8c", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1004474924095124472617762816" - }, - { - "id": "722e4a1837a264f1e8aeef8c15ea7b23c7b1f1a8bd3024f6ba46cb2ec7013f3e", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1465239077152221086425808896" - }, - { - "id": "657475cbff30445dacf1e1554f5a85970fe20c344db32081fd0ebcba95b404f3", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1437142528565016146235883520" - }, - { - "id": "ea68f9ad12175183c3f714655a924b7508c00f82302a51ba15a3d82e5727f352", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1164251918516409043325550592" - }, - { - "id": "eb47fa0b26d8611cb76cf62b7c569b823c3ff814db6a88d6e42f22239a0b56c2", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1076683559043877638373638144" - }, - { - "id": "416401f388dc2cbd037a3764cc4b7d27bf85b168c8651386abcdc9c3eb0a66b3", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1302903316649871235112501248" - }, - { - "id": "d56a7a0550579e36099011ca6697176ca5a5c9a8b4da0e45bc743845c4d434cf", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1246334414463852216678612992" - }, - { - "id": "2b1bc43689b1b4df2a849fdbae7780d3d5d9bd2b7c4d67ab4ae581b8fba9521b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1059459785758730390079340544" - }, - { - "id": "b63a17385ba747107ac101257f1bd86ba005c159f83914489750731b0313347b", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472", - "value": "1018735742056576180025163776" - }, - { - "id": "18f92f793983fda9c8015427b1c7f3fdbe9e82417166a121944f4fcfafa01c77", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1055414511436301084021096448" - }, - { - "id": "758356e4d9a5a6fe69ec6aed8690dbd7b4bef058da7a55067d462e9c46646b62", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1087287693542894512647831552" - }, - { - "id": "c70ea4eabb664d5848ae98ac4594cacc19bbc92594ef0e6645efd81e29171b28", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1517295669339621091766697984" - }, - { - "id": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2527370977241186333339156480" - }, - { - "id": "c2aa3bb625a0c6abaec4d2837ee340ef3e985b559d50027927f04afb979d1e28", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "6279804937135407280368123904" - }, - { - "id": "17184cb7a5f62765f8bb94dceded72fd5c7ff56d8430ac15ea5e59762c246d36", - "fundtype": "siacoin output", - "maturityheight": 217963, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1200296098409439929374867456" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218107, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "124800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "+wg1aHl81f9DHwG25ejebUarp+VxP9QH56oONpg+OcQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1062308814388730615628300288", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1098087766461359431999291392", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1004141712888657407396085760", - "unlockhash": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218" - }, - { - "value": "1312939312507430200173133824", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1058898973135807985718657024", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1001484391203205508678221824", - "unlockhash": "028001a3c3770191bf50aa3f9db680ba091dd7b57ce9b56abd1611a99e0134896a0de109632b" - }, - { - "value": "1058723472389179782435864576", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1017730322850349758036049920", - "unlockhash": "8f516d2039b30f9550586794fae981f6ff26c863869722d52abd44ea3c90fe5b22699864e9cb" - }, - { - "value": "1115121874578194469364367360", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1034750808481857601313636352", - "unlockhash": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0" - }, - { - "value": "1002636938385747183474573312", - "unlockhash": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add" - }, - { - "value": "1072050662202294266642825216", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1188897362629356700695527424", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1102570184755559218222989312", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1082080331493870575678914560", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1929941554375461076782284800", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1014292449790342270956027904", - "unlockhash": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf" - }, - { - "value": "1148967949401593897431859200", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1007432075407379001875234816", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1002388670037410712038539264", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "2708825625783154638655062016", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9231321080376282941566746624", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["139200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9QP7gSHTCw/ljItKB2I/ufAe+XOsIpcIIpWlGTzYavnKzgDd4iS9eucw3B0nQNO3/0f4hl3A/PjtefET0XoCDA==" - } - ] - }, - "transactionid": "389eeebb1444a2a827e0abe7abaf86fb03489eceaef012950316773587741626", - "confirmationheight": 217968, - "confirmationtimestamp": 1564384687, - "inputs": [ - { - "parentid": "ee03dfd7d7edf6d8dc2c9554d2e249a6837e84d7612bbd3146308b74e3eeac53", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "89b076c6004c9199fec92a574170787e259a8d8ea19024094c96bc0e8a2f3fe180b4752f7360", - "value": "34255731533523225244764192768" - } - ], - "outputs": [ - { - "id": "84342f48ecf49a43ddfb00b0e29f7a8747ecd56f62e808024158f869d5ebadd3", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1062308814388730615628300288" - }, - { - "id": "9a92cad2dd8753a1d0ecdfb53ff7a2c72f2e04cf57a9b795fc2a9d6106493ac6", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1098087766461359431999291392" - }, - { - "id": "378524d7ead2abfd5c0a0c0f7ed100c0474cbe2d23acb0a313fe3b507be216e1", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218", - "value": "1004141712888657407396085760" - }, - { - "id": "0be2e11384826bb19b4a0c20dd52486e27c04130cb95abbe28ccb0af83f20243", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1312939312507430200173133824" - }, - { - "id": "3d6dbe76aaf48beab4832141412b6c593cef060a2040f33cfa24dc3cb2e7ef06", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1058898973135807985718657024" - }, - { - "id": "b3ca8b8b4fb899c20e3893deb124ac9b7c5f5ef8d04b971dd2cfab33aba1c760", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "028001a3c3770191bf50aa3f9db680ba091dd7b57ce9b56abd1611a99e0134896a0de109632b", - "value": "1001484391203205508678221824" - }, - { - "id": "ce44c3ea96e46acd1c0596272323dfce45f461afd84f6ade828fd27f93a0d4b3", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1058723472389179782435864576" - }, - { - "id": "4c8c9685c7b5409c6455ed0c08a0d08e6cebee7bd3a5795771462ee2ee1be321", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "8f516d2039b30f9550586794fae981f6ff26c863869722d52abd44ea3c90fe5b22699864e9cb", - "value": "1017730322850349758036049920" - }, - { - "id": "1f02a4329bb96cf5f2cb56bcdfd9dd51a9f8fca3435464549bbfdac465e2c8fd", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1115121874578194469364367360" - }, - { - "id": "5d285a3f08a5119a89a2a6d05ddbfa65fe078c4ab841551bfe1bedf1dbbfe6e4", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0", - "value": "1034750808481857601313636352" - }, - { - "id": "d1cd8dbf4c517a3c5f67927d35685ed0e882355fda58d9941c8fc678fb2295d2", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add", - "value": "1002636938385747183474573312" - }, - { - "id": "34175d8503b9f5148068697fca32f07f74d58dba580ec00003c7e2a748f298bd", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1072050662202294266642825216" - }, - { - "id": "86e8ada6aa9cef9a643b73cea0c3780d5d329934138b31c6c6494fee19603282", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1188897362629356700695527424" - }, - { - "id": "c1d072bee90e11cba7c94618091ccfb1b987460fb73099bfaee6dbff28bd7c00", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1102570184755559218222989312" - }, - { - "id": "e43439bfe29fa5a101418177a53958a357ab06f581983c89f764e2f4c8f6b91d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1082080331493870575678914560" - }, - { - "id": "ba1d6dd556f971198ab6f9e23918cb0d989b167970657cb00e639b3c3aa8da56", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1929941554375461076782284800" - }, - { - "id": "848bb4e3f6750fe868fc859e000aff62557d64473d842ea357d9a33fed9de176", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf", - "value": "1014292449790342270956027904" - }, - { - "id": "adb0a55815905dcf512a491c822c19895779d7193faf1bd1fc53ef81d9ad225d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1148967949401593897431859200" - }, - { - "id": "571a4db7182dd302d37888230edce04cdfa6696203760ede546bb1f756f04244", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1007432075407379001875234816" - }, - { - "id": "39dab4b211c503dd442b8ab8b1ecd078266697703442cf677737ff43cdfb2872", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1002388670037410712038539264" - }, - { - "id": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2708825625783154638655062016" - }, - { - "id": "4e4c3effa167d840c44f18e3526e384f03a77c8d3dc903f0c867a43da6612f48", - "fundtype": "siacoin output", - "maturityheight": 217968, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9231321080376282941566746624" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218112, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "139200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "7J2Obp5kInKWlfW1lgc9EkJlIdsk9nPNa81lLMY8uQ4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "2754777909852550911431278592", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["63600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gH1klaLu/Cq14I5e465bpUa1fNzmM7HZHZQm45vSTqcqkN5IMzy7FPQDqG1HuTwYgWaeLWhWLmpMixiMDsbBAA==" - } - ] - }, - "transactionid": "c54acac937c62f98d86a70ccc61aba0f7efcab7f89e491c6a7c7c745dd9e6850", - "confirmationheight": 217974, - "confirmationtimestamp": 1564388060, - "inputs": [ - { - "parentid": "18355241d2a8aecbca46ddb411c896a3b9a5a54bdf3cfda41d3b9d9e563fe51c", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "43b6c285793d1bbc7b5145561f6d14d99a65cc5041858e1ead7dbe1475a1c889c927a6b86e84", - "value": "2754841509852550911431278592" - } - ], - "outputs": [ - { - "id": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "fundtype": "siacoin output", - "maturityheight": 217974, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2754777909852550911431278592" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "63600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "5tYINUshkUckL8XwhDUsoBcNgPeLPu8lSX9Txdoh7uQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1045368802787382880652099584", - "unlockhash": "a5a4d9329a1ee389c7ab98f325e9d866f21985f6295b594e62f93e3de42f8b9849779c003853" - }, - { - "value": "1040553463621902635436883968", - "unlockhash": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9" - }, - { - "value": "1278589706052004874027008000", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1119589077742564605071196160", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1155300519500729219775594496", - "unlockhash": "cf063a7b3dfb1afd08c4e0b6ded4fc730c77ff9ca600ab6e61115c5e25571b21e70585fc9a89" - }, - { - "value": "1042397207270020299371266048", - "unlockhash": "6692c485e8c65a0e36fb3909cb55aef8d8b65f8d77018566c8a508e985220beb8fcd11ee24d4" - }, - { - "value": "1222148978493281700534026240", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1922923846861052918645129216", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1210311641960789616953393152", - "unlockhash": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2" - }, - { - "value": "1373343836240054341353340928", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2680181837842027864653824000", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1110815321086959831730487296", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1191501009624101528544116736", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1094323350050849293292535808", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3929971342783918768161554432", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1011954488220450209070055424", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1062286636202769122821931008", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1032401163493027106332770304", - "unlockhash": "e28b015bfc1536e1c4893b05240cde5b9ddcfb832b6fc95986d16163a1030e82c320839e2abb" - }, - { - "value": "1147964887580054445950500864", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1129923468761598939533672448", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1059110843146954121738059776", - "unlockhash": "b1371d297297d188df9f5231ce5589c5b220c3f440ff3a460a6ef55d5e8e60c6d5814ac8fbf6" - }, - { - "value": "1072950971103564882661408768", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1047362018936931214772928512", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1350551681713955645853532160", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1008786559356044869381390336", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1005533186681538955821350912", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1006799619542108439015456768", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1073885346683106493478928384", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1022746523261691458457632768", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1153613937459069052782641152", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1008858701756006559457607680", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1257203232741290236096544768", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1143517775012513112051548160", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1136718898475062909602955264", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1972391184407389326041677824", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1898889926520665886775312384", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1119508902749954503705624576", - "unlockhash": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0" - }, - { - "value": "1086116412563205307717189632", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1033596560825828163318054912", - "unlockhash": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1" - }, - { - "value": "1102848516675439833825542144", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1016909960971246940074573824", - "unlockhash": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0" - }, - { - "value": "1092970824259407349434548224", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1074157879129481975089856512", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1029217523906295736536989696", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1045304662381485391715500032", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "2796379239865750792785887232", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9481390618667595974974636032", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["229200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2VW0O/r/Yn/EpThMwreE62ftaWkAU6VNHlkF2ZS2G+PrKZ3MnwPQgGCsrv9VDran+PyljzcJLzGZsDDpIn12BQ==" - } - ] - }, - "transactionid": "b373ecd730ee595a75c49c9f1bb9260417ecdb43dc1acf62da14b0acb5dd5b74", - "confirmationheight": 217983, - "confirmationtimestamp": 1564391633, - "inputs": [ - { - "parentid": "1b7327132a5b7ead9bec2f16a16a63ab8512ead564783eeb610ff329ccd7e834", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2fab63f2a4293fa55de5e3cbd7513c49240833b12a0624e9325b92a2c74297ac7d61c946667d", - "value": "68899401294969125335078764544" - } - ], - "outputs": [ - { - "id": "6e95da47e50c16e38cf124b5fdeea6b5fa63e21d363a41355ce397e756c232cf", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "a5a4d9329a1ee389c7ab98f325e9d866f21985f6295b594e62f93e3de42f8b9849779c003853", - "value": "1045368802787382880652099584" - }, - { - "id": "52132eb2bdaf1468bf8c7997c3cb225406ab7cb856f49e18887f724e71d950e7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9", - "value": "1040553463621902635436883968" - }, - { - "id": "eeb844496c0bff53e139c2e1abe6763d083e2b322308e3069a3de705bb58dc71", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1278589706052004874027008000" - }, - { - "id": "7854290ba73a59b0e13226f285ed11864e45c538d3030fb6db57300a7051152a", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1119589077742564605071196160" - }, - { - "id": "0fc2a4d252be6e2066719114bb43ea2ff602d5491f50701f2b2ffa59a61e52a1", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "cf063a7b3dfb1afd08c4e0b6ded4fc730c77ff9ca600ab6e61115c5e25571b21e70585fc9a89", - "value": "1155300519500729219775594496" - }, - { - "id": "4ccd2c70390815d88a264c70a55df4febb45664f7b5398669eac092655f76603", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "6692c485e8c65a0e36fb3909cb55aef8d8b65f8d77018566c8a508e985220beb8fcd11ee24d4", - "value": "1042397207270020299371266048" - }, - { - "id": "1d38fd14ad9d16039b7b5925885a3434fbc66966ed1419691d6da5e3819cb754", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1222148978493281700534026240" - }, - { - "id": "f174d6371c934536318c1678277102795696d8e64fd36442333fd4bdd505f775", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1922923846861052918645129216" - }, - { - "id": "d70dd6c63fd3c93421a3f7e7eba10f991515cc801f17bff6f39760c5c6269547", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2", - "value": "1210311641960789616953393152" - }, - { - "id": "5c71665769be936555beff2cd8503463def56d22dcc41cf4662e2cf8bd9b148d", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1373343836240054341353340928" - }, - { - "id": "69d357857fb73f1b7c24cf70900671a74a073d86de19d4870a45e387846e9ac2", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2680181837842027864653824000" - }, - { - "id": "6e60c0dfc5f2b610c9fb2774d47e8128aa8a08cd7b2097a316b22cb2e7baf0da", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1110815321086959831730487296" - }, - { - "id": "5c4e9e477a05c4b18f1354f42f9f53de08c5b00294e23fbb3fea7a30ae2f1b6f", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1191501009624101528544116736" - }, - { - "id": "6ea889a850e052a8a4cfe1729b95e32f7c45a7df207a84645a2796bda9677565", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1094323350050849293292535808" - }, - { - "id": "3306d024c9bbb5e0096b871a486109e0768d3806fc1bd99edd3e12cf0bb721a6", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3929971342783918768161554432" - }, - { - "id": "e76407e313bb81eb7497b48590a6448325444f5d909a3ee4beae05aeb10efbb4", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1011954488220450209070055424" - }, - { - "id": "286a68620e12e3c2b9d7abe5542ea19bef36728461051184b8b19b2286ab2f7e", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1062286636202769122821931008" - }, - { - "id": "f3fcf4c46b61845d8dd24bf02feae2ffbb68d6aff745b428096653357bef5a63", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "e28b015bfc1536e1c4893b05240cde5b9ddcfb832b6fc95986d16163a1030e82c320839e2abb", - "value": "1032401163493027106332770304" - }, - { - "id": "3864c821ee8bd75af0de3496202c54bf6e61431f2402916d52a5ccf57365116c", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1147964887580054445950500864" - }, - { - "id": "5d7e2bd334886e775e02406925d7f80b30a9d767e05c6228f823d426471ae093", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1129923468761598939533672448" - }, - { - "id": "8f01e36e6f9ab2613c194c9b48e8c2822b29b4a707ee91f9ab3eccc4659922c7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b1371d297297d188df9f5231ce5589c5b220c3f440ff3a460a6ef55d5e8e60c6d5814ac8fbf6", - "value": "1059110843146954121738059776" - }, - { - "id": "02df802f862fc50887f86e4be346cd1ff028467455047efc570c6e361dcc3204", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1072950971103564882661408768" - }, - { - "id": "4ea5e96d68fbb1feecca1e28bed351934c01508384b4423b0dbb520b782c93fb", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1047362018936931214772928512" - }, - { - "id": "0ace380517e4906ca5bcbd69a90f1e52309ddb750a9e6d921392a5d695d6e7cd", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1350551681713955645853532160" - }, - { - "id": "06791ee6b2da902094ea0a22512f29fa00cad88cd367c551a9a7ad7b45b9dccd", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1008786559356044869381390336" - }, - { - "id": "b92b1f61f67accd767aadd2b6e477ccf383b11b36ce6bf05d7c9af8262ca7f21", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1005533186681538955821350912" - }, - { - "id": "76dbf61d7bef99cd31fb202c130c4dab34a010587559e988a43ada30d82307e9", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1006799619542108439015456768" - }, - { - "id": "684d43f690aebbc96471b62df5a754f72cd89b3ec703267ef983c73a2877eb9a", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1073885346683106493478928384" - }, - { - "id": "0d7e467554d45d6c537d25762946f0a0ee56aeb75b94fe0006b55048ec63c6ac", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1022746523261691458457632768" - }, - { - "id": "2aba987e388f1ff439733da531bbf60b5d0f7f59d660d8539ea63af3462a7cf9", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1153613937459069052782641152" - }, - { - "id": "9d7e883afb87ed4104ee5372254a91d0d03389baf2b002c7b0a6ef1abef76c9e", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1008858701756006559457607680" - }, - { - "id": "e30c4e333b47fdf0d122e476640298bfee3b457f3132033c0a7ce384d42bb499", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1257203232741290236096544768" - }, - { - "id": "ef98274254a4bdeda418079fe13123123a1e90ffaccd949d96511bff3de028cb", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1143517775012513112051548160" - }, - { - "id": "050f34b546762685466ba7ceafb2268fb8abd25493507aac05908f590a851ed0", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1136718898475062909602955264" - }, - { - "id": "0a78b46b007b9563f64a9eef20ac22511dbb991436c0f4aee14159c05829b805", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1972391184407389326041677824" - }, - { - "id": "587477b48d72d9515b49ba2a4012bb02a37241a9144e619c97b0438de665aae8", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1898889926520665886775312384" - }, - { - "id": "4751a16d001951031aa52efe547331d59844095ff20f165c6543d81da723ec99", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0", - "value": "1119508902749954503705624576" - }, - { - "id": "1d68d7fd2b0b20048e05f3560f65c9486143915e75d39e5ca681d67e038acd8f", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1086116412563205307717189632" - }, - { - "id": "b6fddf7e68475acfe75e279ee98ff2eefff8e69d8dc54f5b2f1b309b54779241", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1", - "value": "1033596560825828163318054912" - }, - { - "id": "5cf7f80615a841f30d54e1b89f3f560ac2c8b1997fda510d078a71f2ab9b3c72", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1102848516675439833825542144" - }, - { - "id": "fadf083437fe34da447af1f0d82a903d54d7f55ecf4e1b49d4f9d1e7da00c9b7", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0", - "value": "1016909960971246940074573824" - }, - { - "id": "23ad1df111d43de93af0b41c6293923052a2126d3e1712663b86c44ae0611b83", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1092970824259407349434548224" - }, - { - "id": "ba142818da9b2c41660b4024ceeb9f0f07460726a51d522e4c4544c70a278808", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1074157879129481975089856512" - }, - { - "id": "fd73c8988c27468f7d0e5b4c63f2adbd205e10581804b085b44d7f805f85bcad", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1029217523906295736536989696" - }, - { - "id": "5a8ed47b84c55708d43d2884a4b33bb8ab6749a8831d90a92755016184de3cf3", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1045304662381485391715500032" - }, - { - "id": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2796379239865750792785887232" - }, - { - "id": "d815cbe0ee7e5c654e51564ee82160415ff0ea847e1f34e59d7a4aa39ccc2ffa", - "fundtype": "siacoin output", - "maturityheight": 217983, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9481390618667595974974636032" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "229200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "UZ9LOAzVahpOv1HBs5eXT0laU5RUk2LZ6EEzeF378WQ=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1310267100419902552606769152", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1065121775163428299353096192", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1139302549956267087268151296", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1012629498492793344225312768", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1032371103186572472893440000", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "1510608304861714111250038784", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2760143552510360494243053568", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3166317877433486151623229440", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1042082566136978687912706048", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - }, - { - "value": "1018576994374280576947978240", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["96000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "A6Yk1N5fSVB5ZQ0PildPgawB56P71/EeizgOKighUGpi+50huHJFC6hcecXht/V6bat+YKbipRwzwQd/GybbAQ==" - } - ] - }, - "transactionid": "6fb89e4a98a34b566a07108f97b39858a9e204d8c80a548eefad078dcd98ea57", - "confirmationheight": 217989, - "confirmationtimestamp": 1564395571, - "inputs": [ - { - "parentid": "6600d63596d01fa92dc6d1fc5815d10ed435577d6c6c5ddb716500808cdc4cfd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "9b70d8da90a1d6e609bc07e82d09022dffe3e0fd172e3f0e595d2f11aa100045fbf71658dd10", - "value": "15057517322535783778323775488" - } - ], - "outputs": [ - { - "id": "7f5acc0dff692b0de791843f9fcd84d528376ffb5973f77cf5a23aec13f58deb", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1310267100419902552606769152" - }, - { - "id": "e8248e879e08e14fa8986868a2f25ee40032b842e5762d111d4b351a2c890cd1", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1065121775163428299353096192" - }, - { - "id": "c6f9d60304fe33aca6f047d7e664675b945f4b8106e671ba17c90b3186f5b6b6", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1139302549956267087268151296" - }, - { - "id": "175ae6cfbb8e2e1905a654e591497a9fa8b113c566f68ad1c16ec9d712d409a3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1012629498492793344225312768" - }, - { - "id": "bfc260ada1ea5abc8757a2d78f8b6e3d265aee9f804c62e08628672cb549bd79", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1032371103186572472893440000" - }, - { - "id": "930a79318930cdb3a46fc4b57599e7886f122088f8e7ba93e58e7a4ea0261ae3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1510608304861714111250038784" - }, - { - "id": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2760143552510360494243053568" - }, - { - "id": "38009ab5d94593c3a2bd44c2a8d6bfc82047433e23c4e1d652bdae945f0d6591", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "3166317877433486151623229440" - }, - { - "id": "40b3188aa7db25cd994f93fad813672fec565fb3de68b68a68c3d34546f39e69", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1042082566136978687912706048" - }, - { - "id": "925f54d8b5b64ffff96c99f74444135658199ea4951d06552945d47bb926bd23", - "fundtype": "siacoin output", - "maturityheight": 217989, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1018576994374280576947978240" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "96000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "OHmzMz5Tji1WCGS0bDXJkgK69ucZthL+go1Vx5qaiSc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1079826793684562970337345536", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1147664433427083780610326528", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1009250859743640898219409408", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1028432362581446228152942592", - "unlockhash": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0" - }, - { - "value": "1034594835517784751307669504", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1152807551939009036847939584", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1099741811440620336310550528", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1284679685779857510347309056", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1066930861609483023481307136", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1034141593731074114094366720", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1000621839377398086555664384", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1048147274064332844864307200", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1192394994850280336792748032", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1138379986837450538746511360", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1007626065849784348416573440", - "unlockhash": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017" - }, - { - "value": "1182504776340197973801566208", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1008047945743236717564919808", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1816084125978513348408377344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1373995009057331323559116800", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1040201633925760157298098176", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1229655093811018070688268288", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1026920011072794811882012672", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1002535943929784339407732736", - "unlockhash": "03687b56acf5fff6701bd49508cd857877ab26aae6de83d8cbe0c679116e0b36a0d1e771d546" - }, - { - "value": "2724215459135375404118835200", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["146400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "YhC8Ai6N96kxr5jrM7s8J3gxMlxAOmRava6G53yA0jUVCIm3hZ9RsTTj6NcA1Vo8Ae+wL1mFoyBVlW3p3R6XDQ==" - } - ] - }, - "transactionid": "d94c0f5aea2143ee3efcbbba2be60662f6e15342ff3b764ce4ed2448c28cde1b", - "confirmationheight": 217997, - "confirmationtimestamp": 1564398855, - "inputs": [ - { - "parentid": "b4e28e1b45f4d14901f8db88993df6dfa67f0e144ce06aedd98e073d9001d07a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "617665eb964419c10f5de6092a53f0947ea57244cfa89f0d4d372eb8a4c7f68f9279dce36b9e", - "value": "28729547349427820951813898240" - } - ], - "outputs": [ - { - "id": "34bd8dbb1e389b7ded34427763daa069f4dd528bd5e1f5f2b206d1c7045b743b", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1079826793684562970337345536" - }, - { - "id": "614630e9b6fdd9f2c0bfbff0a66c414dc83d5b1634fbd508607980ee977ed97a", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1147664433427083780610326528" - }, - { - "id": "fee8d2d585332fa187da937e605c00d4dfa3987a319edf0e40a8a679c3c83d37", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1009250859743640898219409408" - }, - { - "id": "337bf46403aa7160d8cce79b139b1bb6f6334924652833eeb8183906fda55f96", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0", - "value": "1028432362581446228152942592" - }, - { - "id": "1decb0de54c50c2aae2fc5ce21fe467a0f93f4cb836ad605c6b2ebf5d613a54f", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1034594835517784751307669504" - }, - { - "id": "d99153b986f5b0c2857b60d5d50714e92bdb257a42141a47f9be1335403eb463", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1152807551939009036847939584" - }, - { - "id": "d4a412579e80a736521e3937f03d2f666ce0cae02e3ebc66bbf8536c3e503b11", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1099741811440620336310550528" - }, - { - "id": "4883bd7b43dbb4b9cf68397e14b334acffd4e53bc0ef4ef605b4d2a20742adf2", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1284679685779857510347309056" - }, - { - "id": "77f1ceebb6632b138466f2ca8078b0340a88be59f5cdae20387d2e3118b6beed", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1066930861609483023481307136" - }, - { - "id": "52b405699f374c13c49abddae29bed4fba168f22e8119f72b502a386658ba87e", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1034141593731074114094366720" - }, - { - "id": "04761e19530b2221c18e1826ca55bb3bc047d248cdd439725c25598cdedf3e12", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1000621839377398086555664384" - }, - { - "id": "6d9a7d5241bad80e852db49e363501b2ef4417b2e8e82c847d1380d2db076a69", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1048147274064332844864307200" - }, - { - "id": "dd20e2c2a436ce57baf3ce6821ecb0b9c662f2c70caa2ab75755e2ec0848c790", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1192394994850280336792748032" - }, - { - "id": "0a97c5ba115ef4aa0b97d560edc03332fd0885a01da203f309248d2de4ecf802", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1138379986837450538746511360" - }, - { - "id": "26ecde8fe7de968da3596e64db6e29a671ae8c7ac8d8437b748077a8c50bc5d6", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "a8d3db20f55edbc0b1e8488dbfe7a22f674fa946aabe32d04bcb51efaa9235f285fb675da017", - "value": "1007626065849784348416573440" - }, - { - "id": "ac8ed2bb42bcfa61ad12efaf4123475f7522ab8e5b61a95e2ac561367d0730ba", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1182504776340197973801566208" - }, - { - "id": "a8f0d4fcbd617b2ed30b97b3281e64ba2dbb34274cb4323782d0f8c640b22097", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1008047945743236717564919808" - }, - { - "id": "549322a3eb140f067971044c95383d3c6330eb7ad884835686933faa9ca7b2d2", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1816084125978513348408377344" - }, - { - "id": "74376372f85778e3215503884cb20b41724a8743932a10ebd2e415f1930d10d6", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1373995009057331323559116800" - }, - { - "id": "df73e03da74649d4ab0c29e025cfb31eb22116d22c94f3ee94df4dedd51e8d82", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1040201633925760157298098176" - }, - { - "id": "13c9e98058e5b00c6e575891934802be9865da93e1431f2c12b8a13969bdd57e", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1229655093811018070688268288" - }, - { - "id": "d7f8a1f80818a23d103b2aa643c2ca7e3dc5c8208c0bf5e4d218ca59d9520f14", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1026920011072794811882012672" - }, - { - "id": "8f67913307fc95acc6bace5c36733793739eafdc7f031c08cffaf6cbb545b13a", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": false, - "relatedaddress": "03687b56acf5fff6701bd49508cd857877ab26aae6de83d8cbe0c679116e0b36a0d1e771d546", - "value": "1002535943929784339407732736" - }, - { - "id": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "fundtype": "siacoin output", - "maturityheight": 217997, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2724215459135375404118835200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "146400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "995lm/s2XGfzG+RkzN2P64bjhxd9MlcWGBLhPHmTyKU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1461248230061118843311357952", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1032495699800029090361901056", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1064160352355879151271346176", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1123548037421055001998917632", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1007504346777075854804779008", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1020348434014837495282073600", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1103672578887597711084879872", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1062341683190499805095133184", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1107577374206893515852742656", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1021259314898935996679716864", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "1492974271748951648778584064", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2782911267860196643685007360", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "10090163918702673899930435584", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["106800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bYNNYqjEWwab9WRlIk7Sc4IgfyvxSomS/1akFbiXiBC3nP0MZLJRgDELbYVVbnA/sYXmgwG1qNS3NQhrcXM0Aw==" - } - ] - }, - "transactionid": "244f4d4d16a2f12dcc5ee31845c02f31d27f9b46c89f6bd7f015c16cfc4aa39a", - "confirmationheight": 217999, - "confirmationtimestamp": 1564402477, - "inputs": [ - { - "parentid": "52c3f3d3896c35b40ea6c5e6267786214b4a859854b98b21814bfc02cd72b564", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b9712274833a677fbc01d45b7b5946fba0ce170a5900ca9db3b55add749d8a47fe83500c2a49", - "value": "25370312309925744658136875008" - } - ], - "outputs": [ - { - "id": "dabe11e1f7b1ca92bc907413091fd4344fb1403f6cef94c69b7f4b9d981ca522", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1461248230061118843311357952" - }, - { - "id": "3061ad008aa777671eed6e9c848fb5acf36e1f9a60b3ea9f1987e5fd82df905a", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1032495699800029090361901056" - }, - { - "id": "688c1e086ddc8a3a9ab48fef95fbd864de94a4d5fa08c43a00e713bc3a105e2f", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1064160352355879151271346176" - }, - { - "id": "38c94d1dde8f7d77d6633fa131e59e056a8ef6fe06561b4e2a59ca6b357dfe82", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1123548037421055001998917632" - }, - { - "id": "ac08de8e72ecb23ed9ae228ff9bad2cc55f9064ad17cb3fc7a39495a3540bc55", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1007504346777075854804779008" - }, - { - "id": "212842a7b1cdc53d5beee9243f3b3d5c8f6e68e39133f3ed07c0cc7ff1b718aa", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1020348434014837495282073600" - }, - { - "id": "429472ff1cb4fd4fd780bc0b6483850664ba49aea2a41ebbcbf84501f9c55565", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1103672578887597711084879872" - }, - { - "id": "2a9e25c35d8eacad57953fd9791c2ebb8361a4291f58ae4073dd6fa0545771de", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1062341683190499805095133184" - }, - { - "id": "559be81698656e4ed3fdf41b548eed34fd769e79daa67890bbf13a7aa7b5f8a8", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1107577374206893515852742656" - }, - { - "id": "8c9012b801055ef30b4527cd0d0b86a8927e2bec8fdb1935cbd5033afb3e9fae", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1021259314898935996679716864" - }, - { - "id": "929d6c399efd0c93e290a3f4156763ddbb7ffbd4a193bbb448beee9a0d5125ff", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1492974271748951648778584064" - }, - { - "id": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2782911267860196643685007360" - }, - { - "id": "15fae469fa62391b31af31e4752e9ea08f11993b97b2fe9cfdb0921a575127c2", - "fundtype": "siacoin output", - "maturityheight": 217999, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "10090163918702673899930435584" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218143, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "106800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "MrBUyWdi22A5SgZNCOwugAA69FMJB60xxyNVxynh9KU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1054636491601870197453488128", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1350174135534338909577150464", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1003420856152356192129974272", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1111387013403787185410277376", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1038488315843283338510729216", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1065120951142544915529203712", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1047813799281803392564002816", - "unlockhash": "7829b8b59e95977d783fd29b06976664ed432c0c15cafd34a71d447d78c94a025c4a9f0e1b14" - }, - { - "value": "1191950133821474721335607296", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1263272634893415554050686976", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1249507190650401222207471616", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1854821593230217400824102912", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1041900764913446154662838272", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1009605119153745163982209024", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "2729434491676486602015637504", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8076803024608144726925770752", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1043853501632856482253897728", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["117600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JS3YXnQxrxgZ9/pG8QAriCQxXNqwRyanaM7xf+Y3tfcDkdCjpsNzFvnWOb+NouYKgfcSTjlFsZnhCFPsJRUuDQ==" - } - ] - }, - "transactionid": "725116dc3d034c8d083e81fe8d644203c32f0609ec7cb2f5efc518f0267fccf8", - "confirmationheight": 218005, - "confirmationtimestamp": 1564406007, - "inputs": [ - { - "parentid": "e194b867af8e39d3d0d0ba401b0eb9750ff872b5cb1edcf71c1f3c05a5135279", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "d9db63868655fe0eb6f893b26dab4d38199903397f58bb823f94b1b2cde50e52cfc3f6d0363c", - "value": "27132307617540172159433048064" - } - ], - "outputs": [ - { - "id": "6d3e82f77cf0b92ac9ec18b3c89ed0648f116c31dcc7d6ea609b07dc8a748f51", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1054636491601870197453488128" - }, - { - "id": "a3e3c8d21a84d5dfed121e312e4ea781b4abd1baf04489064035450718fb03ad", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1350174135534338909577150464" - }, - { - "id": "33542c1c21665572015793034f416f76d152d513c42e917dd0187d8798ba522e", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1003420856152356192129974272" - }, - { - "id": "dc364631aaa610084c3dcd69fa048b06fb55d048c3445db8a0a97c671b3ee2c8", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1111387013403787185410277376" - }, - { - "id": "7ce56ff38d12965fc42cfdd2d7b9974e027659083415e96308b9dd54014edf2e", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1038488315843283338510729216" - }, - { - "id": "ed6a2830926eb7a853273685c789e831171c0e30067b35173d968116f6c05bed", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1065120951142544915529203712" - }, - { - "id": "c26116b484b4e6e969e9328c95eb85d1731e3b101847cea2d77eb972e10302fb", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "7829b8b59e95977d783fd29b06976664ed432c0c15cafd34a71d447d78c94a025c4a9f0e1b14", - "value": "1047813799281803392564002816" - }, - { - "id": "44f5ea5af82568e86f523f7dfe9514ad1b7e14ab9f2a236d5c36744871204c48", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1191950133821474721335607296" - }, - { - "id": "b2c8bda01e464193eced1c45e98eb6b0a6b6ff2e5f12a243e29e48f97ceb12ac", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1263272634893415554050686976" - }, - { - "id": "96fbd40c6e10f00ab55dacaa7e54ad56689e6443f3898c0c311b3960d9650e30", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1249507190650401222207471616" - }, - { - "id": "91b0679b51339ea1a421efbf63081747215cb13fc02c928751e21b7fc701bc7a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1854821593230217400824102912" - }, - { - "id": "a5a59bf2b4db0d827af922d6dd69b6be15eb3354dfe5f20779d067b9b05c1746", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1041900764913446154662838272" - }, - { - "id": "2032599288408c8ac3de04bb1ff55175247e3d8916ffb7daf88558968bc5044a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1009605119153745163982209024" - }, - { - "id": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2729434491676486602015637504" - }, - { - "id": "0b03a87659fec12f921c1399dd12af1db67cc6931a524b749409309903ecba1a", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8076803024608144726925770752" - }, - { - "id": "25f084d9a27d645e5f7c97112140c07da818758fbe975b7972dd5f036ff60315", - "fundtype": "siacoin output", - "maturityheight": 218005, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1043853501632856482253897728" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218149, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "117600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "3AjNDNuwFEJYcTe4BPCD0GTKKJG8hFQoWBhQ1+TDzDM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1215825537357827580509552640", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1080523928006530504659042304", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1080000348074778748575547392", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1462067791828009333946318848", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1305860178525061773079871488", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1137041508548613636281597952", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1219330541068376483608657920", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1068562291703369170953961472", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1024881723946115061481996288", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1056489617078373250068840448", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - }, - { - "value": "1044904709346700251076689920", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1501908649396087626687053824", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2505048317327843513677643776", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9375060880955736245193932800", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1071050385967063042583429120", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["114000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QrUq71MvrwwVyU4CGNblcU8v3O2epqfRkpI+TAUzHdggYGgkeLfehGZa+UT0UxypmHGG5+9H+nhLSRkWwmCTAg==" - } - ] - }, - "transactionid": "634c408821f8add6489b73c38cc9ae32f486f49ec095ec0664cdae9d74b19356", - "confirmationheight": 218010, - "confirmationtimestamp": 1564410999, - "inputs": [ - { - "parentid": "4d9335c96cd33bd55a6482c60754b0fb556d358f7bfa0a60429709b17a2e2f0e", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "df4c72a5ba30a2d1c42e467911b1b3b4f41dc7de47228daa95eab33e0d0868b9a4cfcb0e517f", - "value": "27148670409130486222384136192" - } - ], - "outputs": [ - { - "id": "f0ccfd3aa9ed687796b283c8ddec87af145ed29deffed90b53969328b21400f6", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1215825537357827580509552640" - }, - { - "id": "4f5c42d207d89485ac2f09c7188cc3099ff94c7529771524ec0e2fb0fcafb0a6", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1080523928006530504659042304" - }, - { - "id": "670bb7d677d06eab721ee4ddd23e10d8d0dc01f61173887b63152cdf3dc614ad", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1080000348074778748575547392" - }, - { - "id": "4903464cf96de58a26e37ee5d39e4e39f11257d36adc3b0088e246e6f258f819", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1462067791828009333946318848" - }, - { - "id": "b474106a832d18a7052fb721718eda7bc71dc58d4058205face09ef7d826956b", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1305860178525061773079871488" - }, - { - "id": "e046931953d7a39cca023bb173107086e457e072664e8122d9e3bc566b7beabf", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1137041508548613636281597952" - }, - { - "id": "d85fe84ff22fc59e22b308c3c289ae65274745e7d080ffcce38179ea5a0eeff1", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1219330541068376483608657920" - }, - { - "id": "9059bae66eadf3808bdc3c4ebaec1d41636f2cbff912a9af09662b80e472d17a", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1068562291703369170953961472" - }, - { - "id": "846439b2144075c80424928d73c39f4dd0bbb5fac97ad3d6072e93737aa3cbe7", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1024881723946115061481996288" - }, - { - "id": "f844a551573a9960c79585566fd94e51f67080880f17575b47a26a86ab40983f", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1056489617078373250068840448" - }, - { - "id": "be54b4e31865fca9e52bbab60e5f6a0edd10891f34aa9c0b58b19a8e0c2e029a", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1044904709346700251076689920" - }, - { - "id": "2effb2684c271095bff8c5a1c019bc1a62512d0677e0fe3683be54de719304bc", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1501908649396087626687053824" - }, - { - "id": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2505048317327843513677643776" - }, - { - "id": "08dc0b70b4ada888c8068e7deb86070deb5bd77e9e0cad98d47a89f3f8296dba", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9375060880955736245193932800" - }, - { - "id": "8d79ddc40a201cdde4a31ffcd3c63ccf0ac51f962e75c1d51247d9e84863596f", - "fundtype": "siacoin output", - "maturityheight": 218010, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1071050385967063042583429120" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218154, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "114000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "WtLrxj2zeEUMdi3PpNNz2OnDQ7yxD23kdiugVirnhmM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071686641950366015573884928", - "unlockhash": "8299c421ee925baf785d427b1e41e453cd544d975e0b309f3a81e2d7c54d370b1df466771376" - }, - { - "value": "1163976493323576049128177664", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1113938574856762073740476416", - "unlockhash": "8923efe5e27383e1a3d9c0de88dd62bce20ce7add2818ab1cb3e7ce9b6c294f30ddbafb9e0dc" - }, - { - "value": "1036633915680756269787971584", - "unlockhash": "7f051114c0e003b0567a5cbee91dae76d14c6a20a92d801b2ce098acd8be498a2b5448e090de" - }, - { - "value": "1334412880130118269058154496", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "1083975717885365515884429312", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1100102569360540986397163520", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1041051358192228220224733184", - "unlockhash": "4e803209cd71b7beb2b6613b6088ce4a818bbbe143bc0d7cf7cef0eb5822defdba4008d52a10" - }, - { - "value": "1293568148827283432802353152", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1798998264014059120768319488", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1272952094995156931813310464", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2779539492150459287300210688", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1231231958942116727207755776", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1202062261980353704736866304", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1127155884990316887049633792", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1066861080862900503490199552", - "unlockhash": "744f3043680b3ca9d6a0e40b2a3c5db3bce9b72a364e32c8cdcf209fc5e21d1b7df2ef9fa0c6" - }, - { - "value": "4040142287040516270170570752", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1031790778062189153976909824", - "unlockhash": "3474c995cc569d43af08623b1513d7d2deb1901bd69bbbc2967c9c8e3fb1cc882c212b21a23b" - }, - { - "value": "1023867325962481283164372992", - "unlockhash": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560" - }, - { - "value": "1017350181956136878049067008", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1041766647882706594193424384", - "unlockhash": "988268b94509c0d5d0bd0b2766ebb317e0c38f6fb5aecb9d6571e571b074b29eaab89dd2b316" - }, - { - "value": "1063874520848222186900029440", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1018839266352273322930552832", - "unlockhash": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8" - }, - { - "value": "1009100628037103741016473600", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1029344974114413017066635264", - "unlockhash": "967a84d9df19db8d7e35f2dc6532357041cc8cdc5c8c10f48c0a4d29f23ef12adb794de7f71f" - }, - { - "value": "1154593906928858848598949888", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1025928705830430696520810496", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1146141155269046649574653952", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1258777447526670921594044416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1094807779181959025108451328", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1045358090297504225248296960", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1056369622813071546957955072", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1054487107332328074142547968", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1178979013975825858989654016", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1099499596575569414463684608", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1210672855392262960033300480", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1184696405042695780297736192", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1171747991507523452255862784", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1215361289263574687951093760", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1915689271929876650414571520", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055656498846567195284078592", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1058754186629098547253608448", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1063559898983413907591790592", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1002680830191696192625672192", - "unlockhash": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138" - }, - { - "value": "1092559308254708290004975616", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1124068695391302650111721472", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1052059804199910530105950208", - "unlockhash": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0" - }, - { - "value": "1060841920727964288449708032", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1139445647946728923508506624", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2488916717212349232465313792", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pF5KF0+Qx9uCucPvcrb20Eh7WhwIwgWrBeh+8TEoaRg+kAYSC91ZJBqR5N0wXiXQ26nAXGq2mc6CNAPVV/AbDQ==" - } - ] - }, - "transactionid": "8ffd04361dfde015ff1fe063fab9db080475e1d68a5094778090ec852cc9726e", - "confirmationheight": 218011, - "confirmationtimestamp": 1564413621, - "inputs": [ - { - "parentid": "d92351f80cb14f626b62250a258d419a1d3d43d3c430dc6215b71594ae70911f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "2655ef66027005003009fd6be125496fb8cc21ed26ebf89b4f101588f3fa4f3cbebe6c5ffea5", - "value": "62946117695649340991984615424" - } - ], - "outputs": [ - { - "id": "081301f52009856ea97aeef34a9a7d8005fc8130ef902631b62e74f6a206ff00", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8299c421ee925baf785d427b1e41e453cd544d975e0b309f3a81e2d7c54d370b1df466771376", - "value": "1071686641950366015573884928" - }, - { - "id": "eb809c4de7045cabb4790007ce353caeb7184fcc29e102b1885c1a5022877694", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1163976493323576049128177664" - }, - { - "id": "3dfda6f5cd84be82b89a29e84e80603f9ed6ebb253889059ed4eb801aa858469", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8923efe5e27383e1a3d9c0de88dd62bce20ce7add2818ab1cb3e7ce9b6c294f30ddbafb9e0dc", - "value": "1113938574856762073740476416" - }, - { - "id": "05625bd5d230719ab6df18c18e7e9135c1fb46331fce2f2a0dbbf873ece278e0", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7f051114c0e003b0567a5cbee91dae76d14c6a20a92d801b2ce098acd8be498a2b5448e090de", - "value": "1036633915680756269787971584" - }, - { - "id": "0b6d03e168cbefc479d5ff77b8e180214733ac7252092bca851aaf1ef85e42e3", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "1334412880130118269058154496" - }, - { - "id": "5b33128068ab4d6cb54e1ad4e886d8d4645ae08820d0949177eb1c14542cb1a5", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1083975717885365515884429312" - }, - { - "id": "8f50b6fc901bd724b4391e83b50dcc4cddbcbf76d80560a6ada7db116cdfe5b8", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1100102569360540986397163520" - }, - { - "id": "c56147c3872fe3c93a2a836fc905053bff3eaa52280b377929d1622d35bac77d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4e803209cd71b7beb2b6613b6088ce4a818bbbe143bc0d7cf7cef0eb5822defdba4008d52a10", - "value": "1041051358192228220224733184" - }, - { - "id": "8972c41b42d386f37daf25eec75345fcb85e322ac00c5d069a49c88eb69782ee", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1293568148827283432802353152" - }, - { - "id": "b689f2737601236772d56e59c06f631ef14caf8835af51499fbaa88dcb0cf3c0", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1798998264014059120768319488" - }, - { - "id": "c5be65882a7b504a7625e08700a28d482ac7dc02517c27e11ad77c7c8bbf0eb1", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1272952094995156931813310464" - }, - { - "id": "bed472f858dbcdc3f02cf065afd814978c6af23e513fee720ac403a484331b6d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2779539492150459287300210688" - }, - { - "id": "0286a706f171ea1d0b187a943ab912b46cd8139d131dfae14ea8177886fd2bc9", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1231231958942116727207755776" - }, - { - "id": "a5bca7c67fba57e88ca44d419bc779c5b581310adc5ab42a1632f3ea60015a63", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1202062261980353704736866304" - }, - { - "id": "c41e18304d59ae4eb8ed5e5df26b7c3dc26ea6f44a969b8b65573563af522ff8", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1127155884990316887049633792" - }, - { - "id": "bcd0a395a727947b0221478d0a91a385decc7f3dda67bf00553676ab0cae41ff", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "744f3043680b3ca9d6a0e40b2a3c5db3bce9b72a364e32c8cdcf209fc5e21d1b7df2ef9fa0c6", - "value": "1066861080862900503490199552" - }, - { - "id": "27fe465a478ef1bb555712bf2716b1b3a3d879b3d5bb4a285e2f8f4d72e16ecf", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4040142287040516270170570752" - }, - { - "id": "f079df0afa2e2a03761b9d2a524c37aedc4a0813b74da33a8cd0a4be83d21035", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3474c995cc569d43af08623b1513d7d2deb1901bd69bbbc2967c9c8e3fb1cc882c212b21a23b", - "value": "1031790778062189153976909824" - }, - { - "id": "eea65df2c272bb895c0fb050ced45e60fc6b13cc516852873feb01fbfd38efea", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560", - "value": "1023867325962481283164372992" - }, - { - "id": "b1f8454f77256a4a86dfb8d6d9e8de81620eb9522577d2b220af7857d1c41e49", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1017350181956136878049067008" - }, - { - "id": "e6b2c69cabd50514805d98a5903aed8ade12016069ec923380c7c258eae31910", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "988268b94509c0d5d0bd0b2766ebb317e0c38f6fb5aecb9d6571e571b074b29eaab89dd2b316", - "value": "1041766647882706594193424384" - }, - { - "id": "dc77dd23bd4c43640ba651abd1e693eb22ac372472d2863354bb9b4a79101a4e", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1063874520848222186900029440" - }, - { - "id": "c6cabd460353f51d59c7c7cb6309eed8f9e0ad9cbefd99cb130113b4c01f9e74", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8", - "value": "1018839266352273322930552832" - }, - { - "id": "20b40aa41d0a16d6d9b16c915b6692b4d884576f618b10b9dc2722f1e4b1fbaa", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1009100628037103741016473600" - }, - { - "id": "17a300a68067a7bee439401cd3b4603bea807fae61a0d7a2514b9298a83bff6d", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "967a84d9df19db8d7e35f2dc6532357041cc8cdc5c8c10f48c0a4d29f23ef12adb794de7f71f", - "value": "1029344974114413017066635264" - }, - { - "id": "0d6326a66cdd8c4269e32ab152d77318997f117bc894ecc7c3eeb5b232c28f33", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1154593906928858848598949888" - }, - { - "id": "f788ae0ae1adecbf4f6a71873f117346962fc32cece2fe5f18c43db3dbd38c45", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1025928705830430696520810496" - }, - { - "id": "fa734d104bfde2b709e350ffad8babef9d697a72406484eb0b853c29ec312914", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1146141155269046649574653952" - }, - { - "id": "ea78bb31f82ed707428e3f85ddfbe1d1eec31910b59d4e05b9f623bad1275809", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1258777447526670921594044416" - }, - { - "id": "a0125c62a5f9b312bdd59ed67438b84cc953a2ef8a21153addb997ecd0a9d0fa", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1094807779181959025108451328" - }, - { - "id": "34308899a718b660af3b05540862cd84de0be453aeb855ea2bf8e3583b9c42eb", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1045358090297504225248296960" - }, - { - "id": "e354b8fc20c3980c0c7e23ad673fd5645c4fc9174422cd47d4c0bb86d98d2879", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1056369622813071546957955072" - }, - { - "id": "94deb6cd07a5935f0ab74c363632aa7ef9305f1a7c75ee35d0843a14427e9579", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1054487107332328074142547968" - }, - { - "id": "7476d65f5e4ae3481e1bf6da7a911277ea1cf3afb3df2d530217f67a8c0b8dd9", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1178979013975825858989654016" - }, - { - "id": "e32408cab0cb9a9542d614c3af9e31d00673620b404daa2c4eeeea5ef9dbefd4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1099499596575569414463684608" - }, - { - "id": "203ad1a60c3963b5b7d1bc49196c10b8f78a7845e6045d3eb7b819609bf172a4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1210672855392262960033300480" - }, - { - "id": "208d50574f4543c7931437a9c1ba31c73ef469a1886689c3fc78616cc55eafff", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1184696405042695780297736192" - }, - { - "id": "5972aa9fcdaf22b7700b1aa3b8a5e51c9c0e3ff7972e7c0b35aa27aeafa5bf3e", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1171747991507523452255862784" - }, - { - "id": "a3a493ac73acb81abf62859e24b06537125154d1af6a9f1c4431fa2a7b2aeb18", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1215361289263574687951093760" - }, - { - "id": "937e71b09f9849a4cd1f6624b6a81eb05ac1382cb3e08acedd4f3e372c54a096", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1915689271929876650414571520" - }, - { - "id": "1d043d287601d81c8cb52bd2e352c3102dd20f1c9f2883319004f02224869889", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055656498846567195284078592" - }, - { - "id": "733e5578be42eba13e39b947ea8caee679b81da2350c5d98a771028380092a81", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1058754186629098547253608448" - }, - { - "id": "da7c7ddf220b8a95efb4342132dead9470e99f43823a111eb5cc1276338d6c9f", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1063559898983413907591790592" - }, - { - "id": "da9e93f5510cd69895f4377c6c29df634eae48821b00ceaa5384c27e358cf0dc", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "1e6d869b952747d99135cae1c2100b7cd67c3c003fc20deb5f9c75c9200cff448b7c1bab7138", - "value": "1002680830191696192625672192" - }, - { - "id": "25872f043aeef297f133b31063c0453a845bb9f5e95eebc3151067855e3673c1", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1092559308254708290004975616" - }, - { - "id": "bfe1284f92beec4b032ebc36d7ff01486ded4e059fee73913ffdebf4a556bcfd", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1124068695391302650111721472" - }, - { - "id": "3a00b5f8fd4aa0366662d32108d3310e683084c4810c05f4ee23abd5017a042b", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "81d9263cc1620d0b53ad15167fba1450c2d168fddc31751c2c48ac806ea8947eb47b172020d0", - "value": "1052059804199910530105950208" - }, - { - "id": "eedf42a7b1710cdcbac810614c38fa535d6a4af94d6fcbfd4bb03943d611fef6", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1060841920727964288449708032" - }, - { - "id": "c09ff2ce62f114574dba8509dd6e3951a60001f15643444dfdfc5a749212d2c4", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1139445647946728923508506624" - }, - { - "id": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "fundtype": "siacoin output", - "maturityheight": 218011, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488916717212349232465313792" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "adL2JMNlhHiLx9nB7LScSpNamk+pinsrsaXQzUETZ1c=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1162657131002143694990344192", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1059625768631176882772508672", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1056660791466371630441824256", - "unlockhash": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0" - }, - { - "value": "1239742951047062057381789696", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1551324334685458723785146368", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1069001778495856219773730816", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1193633923929153706113630208", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1014311569202458983695646720", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1044211314995574085594873856", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1005825967063168020795555840", - "unlockhash": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84" - }, - { - "value": "1002198040314602460282880000", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1120835224926883995350728704", - "unlockhash": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166" - }, - { - "value": "1015307368711813209549963264", - "unlockhash": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2" - }, - { - "value": "1129904325276093182243504128", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1059977320930815374311227392", - "unlockhash": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7" - }, - { - "value": "1090472602662315211251318784", - "unlockhash": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472" - }, - { - "value": "1117649699877377068387926016", - "unlockhash": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57" - }, - { - "value": "1035026953756410022130089984", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "1489054252058216283609497600", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2468503420464615561126477824", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9613386543992912570986004480", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1333182776057651700193296384", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["139200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6Htnrhld+BqOrlNJaN+5JLELzeM9JOXBJwJbe8txuWwD5vb/eeUiErsjBGLMTzqx167eWqR3FgacU+79kx1KAw==" - } - ] - }, - "transactionid": "77d638e50db9fcb0fa1d40620c878fb3d5ff04d0f0b6796153aa0450bf9d8c7b", - "confirmationheight": 218016, - "confirmationtimestamp": 1564416745, - "inputs": [ - { - "parentid": "2c4e4dd384ccf50b868734e6f41431fefb2ebc52057c42a78cbaec271b67927a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "e82814019c597a3aed73017d9df34550015b2f7cb1c426274da856379f53418eff3d572f9c88", - "value": "34872633259548130644767965184" - } - ], - "outputs": [ - { - "id": "cdf74ea79725f215f612d21ec2342a5372529e6b0b0346908bcc43aed881629e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1162657131002143694990344192" - }, - { - "id": "789c19f2f3f800e1f34cb70ae94ce17b3c8c336e5ea07cd391a27436caa3639c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1059625768631176882772508672" - }, - { - "id": "da45867c000e99c1eee002041d9f722d1772b7a5099035a535b835274444777c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0", - "value": "1056660791466371630441824256" - }, - { - "id": "141321872d1af032b2431d332cc93db097075c080aa37b51ed12cd10e5d56a93", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1239742951047062057381789696" - }, - { - "id": "a61b21132322cf63e3d57c618de8a1c0694d2e9593110718423f1b43dd72e74e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1551324334685458723785146368" - }, - { - "id": "026909b1c5bf116a37b80d5f6a839819740e6f3e4f7483eab8ce4a11ba75fe78", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1069001778495856219773730816" - }, - { - "id": "5cf021124b06979de45b2adefa781b307cfa1ff82b942fb619d4fbc8dfdd2645", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1193633923929153706113630208" - }, - { - "id": "adfaa2b5aba4ca3524b30185a5b75a4a6c012934717c5cafe121a07d2db164a9", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1014311569202458983695646720" - }, - { - "id": "739b52d58413ba37c61757d8acd1c7ef7dbbc9ec6e432f4438569a3b2c43dc5c", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1044211314995574085594873856" - }, - { - "id": "51825f3a22d9e551548a013dcde08ddc33d5ffbcebd15a86b8246b12eec6160d", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84", - "value": "1005825967063168020795555840" - }, - { - "id": "709f1a97e3c70f054e4c18ba71dec7e23e5ff5b9558d0b1c6cf1206e9d9072d2", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1002198040314602460282880000" - }, - { - "id": "ff5dc9b0b3e983a222bba9286116a5e4289ff258a1c548b1aa7ec1c5d88b3a72", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "974644d494002f32adddd1eeeeeb55b6d83cef050fb8bd849b9c0d2b217f55608eca631af166", - "value": "1120835224926883995350728704" - }, - { - "id": "6230fc9b09c17661e21c0633f2e24041dab8a55831ff534871edd9c5bb71645f", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "cf90969ca40460ab3c454be84cef8c7f61744097e4ffcb0bd2aeea33c6508d5155c92a3537f2", - "value": "1015307368711813209549963264" - }, - { - "id": "8de45f3f1c511efcdec6a565d19e98418c39377eadb4c2ea7178670616a9f567", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1129904325276093182243504128" - }, - { - "id": "24affa749b2a1ef0a397c36aaeb9cd957baa8e96cca0b85ab8e69e41e0c54457", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "d4e64f080356b612521c3311b4ee55b1e3f395e4986c498c028240623f8b947499a6db2cc4e7", - "value": "1059977320930815374311227392" - }, - { - "id": "46774bbf7279feb7e38f7ec8a986de0f0acecf3e51eca3ae01fa21b3d7c637b1", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "ebb062b4efd06c07c8d756c75705642b4aea33456ef1ce25e15db96f6550cddaf5d221ab8472", - "value": "1090472602662315211251318784" - }, - { - "id": "b89f01e3ec553e9d4ff78c986d6c798ed8d85e937d873d7e57ed1eac4c3e87fe", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57", - "value": "1117649699877377068387926016" - }, - { - "id": "330754d64784444efa60fc84f53f0225d0bc9762f4e8e4de2ed539b5ac9da005", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1035026953756410022130089984" - }, - { - "id": "46b50f32b35fff6b4c3c7d3f9305ccb3e233d946b75bd55bcf720546a33bce06", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1489054252058216283609497600" - }, - { - "id": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2468503420464615561126477824" - }, - { - "id": "a6d392c93ef644aac11db517fa1d6d44e097a8e39c7f2cd2e3408a4b9f70dd1e", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9613386543992912570986004480" - }, - { - "id": "1b0feb20967247e1cb2c0f7901edb2ab9abe0cdbddd858b5d5930643d4ea47b7", - "fundtype": "siacoin output", - "maturityheight": 218016, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1333182776057651700193296384" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218160, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "139200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9AZjqLkKjloC4+hMtw5J7vuMUNA+4fj4WvDv9qk8ltk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1009659416210059795330924544", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1069522809322495470837104640", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1061082100543926948388995072", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1209066384893259844714758144", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1187355580044046973496459264", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1022244659733572670603132928", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1006653776364272323166470144", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1011200721685465547599331328", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1134823961749289191694008320", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1114083320196531187825901568", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1040686016009665412539088896", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1221686987634073927451410432", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1138572209039472540106096640", - "unlockhash": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927" - }, - { - "value": "1119505183718637087764774912", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1894793774076889152870154240", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1057310813990102932135084032", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1008484210777309405749575680", - "unlockhash": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0" - }, - { - "value": "1039675527385857125960368128", - "unlockhash": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed" - }, - { - "value": "1007393891544533500952412160", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1029726634888795782492454912", - "unlockhash": "243b52e69d69b684426d2b0ba11936eac14368ffa2b4d21e8d327da18cf97ea9a80028aeadd2" - }, - { - "value": "1275546339544207404385697792", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1008637336705576342016294912", - "unlockhash": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6" - }, - { - "value": "2186183085917049875257622528", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8940360099218523230092394496", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1053905552297355167953387520", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["150000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yBWYetoGHwWjuPOj0syOjbxO6FyzCrFRaTkE2D3aXLQYttevQD4AD8szNCLO5AkGVtpxbo+mU3yUZ17P9jMMBw==" - } - ] - }, - "transactionid": "291c6a63477a555a778ec111d80e22b98f199dc44cc5c9403af7a5a517e869da", - "confirmationheight": 218024, - "confirmationtimestamp": 1564420475, - "inputs": [ - { - "parentid": "80789128cba36b708440a3034725e94f93f60bf871e16656dae025129f0a3cd6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "713642776ced071bd26c5a949bc4c590419cdbe7534722a693fbc9b1c2ff8980b5c57098241e", - "value": "36848310393490968841383903232" - } - ], - "outputs": [ - { - "id": "bcce7b3c2334886227ea5b9e1c0f5b4fe3d63f4b78145a255265bc2c73e0923e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1009659416210059795330924544" - }, - { - "id": "4b63eb846f7fb9df2148185597400f89bb0e9a4c370caaa0cbd9dcd5aa66de8c", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1069522809322495470837104640" - }, - { - "id": "b1710c1de949bb7c79d0be5d6dc9405cacd23d11ce83285203e9a83fcf7dc6d7", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1061082100543926948388995072" - }, - { - "id": "3a89fb4caf3b9f7fc45890ee30ddfa26150448b883570738998e2ecf74986a9e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1209066384893259844714758144" - }, - { - "id": "1650c05f6cf927b6f0927c3c21e86381831aea5b6ad29e5007ea05f93408c24d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1187355580044046973496459264" - }, - { - "id": "a941cd5fd301cc849aae80066447d29cf7d71de37b2eccd9c5489c3cd2824f62", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1022244659733572670603132928" - }, - { - "id": "13293cb87ae8b4324a0321770da86425e4386fceb059f53f47b60980bbc092f6", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1006653776364272323166470144" - }, - { - "id": "e84e61ea2e531f89d54bff373377095d42e1e6b8959a8d8685bc9052b95a47d5", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1011200721685465547599331328" - }, - { - "id": "ef61875856482a7c3c3f4deeaad8590b4eaf2c09c712a2c13f81b45e0a36e924", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1134823961749289191694008320" - }, - { - "id": "89bf306b2cace6d4d74636787d6913d2531bc1f8ce54f39cdf6fe29387238fcb", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1114083320196531187825901568" - }, - { - "id": "bc8ddc42853f6be4c1f1ee218023fb3ce17892fa6243044be18e50fb7760b57a", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1040686016009665412539088896" - }, - { - "id": "314512b303bef2ce443b72ced073c796265933154a2e44a0412356987f4b9ccd", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1221686987634073927451410432" - }, - { - "id": "b8ae1e299aea2b1a03a2d802b62daf118b708dc78700255d795eefdedcac1f3a", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e56cb9d0d04c15564d3957684a8dbcf5f13ee3b2c847574677156ca0894970ed39613fd0b927", - "value": "1138572209039472540106096640" - }, - { - "id": "d959416736cc81a5b545ae5367ab6c1c595d11d8a5eb244c74f468d90f4371d4", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1119505183718637087764774912" - }, - { - "id": "a58b1623a67b943c7562ed78db527029d8eb0417a959aee899b9fd393808872e", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1894793774076889152870154240" - }, - { - "id": "b61838a1236c92a6600a404361e53f893ad21be656ed330c18fbde4f5c5916d1", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1057310813990102932135084032" - }, - { - "id": "306f9691baee53463d99e5261f6b11e07e4fef91daaa1b8cd8d51b79041744b3", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "0bd61dc0d101526d2a036f66b3775eeb01794c11c5fe48738dcb7424b2341cfd3205ca41aad0", - "value": "1008484210777309405749575680" - }, - { - "id": "3bad59dee56f5870942e2be59cc1c87848ae44b5211c447923aa5a3948aa7b39", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a255e78e62b0216f9c405f6e46ae6754f1f44228893c0362a784fe2ee05706efb2299a296fed", - "value": "1039675527385857125960368128" - }, - { - "id": "be55e89cc71ff5f1fba5437ee6bcdc26b58d368628e07863e63131db3981592f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1007393891544533500952412160" - }, - { - "id": "14bcb0b725898c2c93a2281f1ea2b36d3fe4855078cc4decd3bdc0ff50d627b0", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "243b52e69d69b684426d2b0ba11936eac14368ffa2b4d21e8d327da18cf97ea9a80028aeadd2", - "value": "1029726634888795782492454912" - }, - { - "id": "c21cd0ede4a6567961c5b6d1c81f57f3c5c5b895a702f68c6bdedf7a9e03d2e9", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1275546339544207404385697792" - }, - { - "id": "c39c3fbb9796d7718b3dcb86abb4061df6f9d8f351c3bb740a160da179a8b091", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6a4e8e548c3ab6cc786ea13e31e5b54522f1b6d5dff1014de3d487d5793fc96c68e3334934b6", - "value": "1008637336705576342016294912" - }, - { - "id": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2186183085917049875257622528" - }, - { - "id": "19b27829953651c98c92eb59cd1b91b9de2af8697b553a046615749a33812e6c", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8940360099218523230092394496" - }, - { - "id": "76c8d59c5a2412e88997bd111f910c2bd5badfa7af9cdedd82f608d917463ebc", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1053905552297355167953387520" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218168, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "150000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gjt1icob+aUPo1WCM2NBJ68WPNqFSbibE83TkvdRxrU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "82855716934913524584000000000", - "unlockhash": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f" - }, - { - "value": "5306289253735991460000000000", - "unlockhash": "fd228331955821196940260a5d2ef20ce4777ddc211435d784820f693b9680353022bc041fd5" - }, - { - "value": "3473972712005445950000000000", - "unlockhash": "ff054f7a542fcadc117eb53dfd7177db93d202e409c05ad0713ec7e9067b0c9b5d735aacce8d" - }, - { - "value": "3022656791466225750000000000", - "unlockhash": "413707a43d8987ad86977d6148fb4932736514c81d2344ceae9be68abe84fb6ff4d77cf0ce26" - }, - { - "value": "2809363225654938571000000000", - "unlockhash": "f96b9591b4003c2660c4488e1cdcae4494a71ff9b7b13323f1a53c4d695915b8ed98a3136a4f" - }, - { - "value": "1855106540760251465000000000", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1518286285660440660000000000", - "unlockhash": "e71b4dbd18b41f0cddaa2c252c0f95edb0b3efcb22e314f35892f9f55738ea4e36d551c08944" - }, - { - "value": "1237792935271103300000000000", - "unlockhash": "6841f29bd6405d897537632ec92b9d3d57a88e56facd6385dc55acb259f8125628eac047ae77" - }, - { - "value": "1038278208467755057000000000", - "unlockhash": "4080abe2bd9cce45c3073f1973ad74950168a66deba2a427bd0f46cf5612872a817fd336cbe7" - }, - { - "value": "1018649657266610539000000000", - "unlockhash": "2898910f36b38b565cf7cb39f9712d173f867d64799aa4d9bbb8e57baafd310611c9593bc313" - }, - { - "value": "1012001987987526812000000000", - "unlockhash": "ba5f40622d9b9c3e0fcc91eea713f83f1ba232600b88bef774c1b191eecd9ec2b8fbb8876e58" - }, - { - "value": "1006657371694807870000000000", - "unlockhash": "ca4283c134f2d4fa748c1f4361c8f1b1cc9fcbb4e2239537488bbc458feef2ec2c49f088663d" - }, - { - "value": "1001566430899968716000000000", - "unlockhash": "891280f209d762e431bd480d7090fe4074e1432e7ead71766ac5d2f30492dc166105eb508204" - }, - { - "value": "1000452643275459875000000000", - "unlockhash": "ee4e6e15d2bfe66516710c2885c86044df303035804b1c22d16dbc22e5767a43cc336a4f88c8" - }, - { - "value": "511045523263099075000000000", - "unlockhash": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791" - }, - { - "value": "466427849460647165000000000", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "253450116749667425000000000", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "235783766959640883000000000", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "208448492753984229000000000", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "161486659363433281000000000", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "136086022154300880000000000", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "119169856035870872000000000", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "115803323486094754000000000", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "108551358260504068000000000", - "unlockhash": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936" - }, - { - "value": "104459291794789395000000000", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "101181173145349077000000000", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "100962148551049922000000000", - "unlockhash": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c" - }, - { - "value": "100732381456795589000000000", - "unlockhash": "b6e193028a1e5ee4db61fbeaa7c5839177f1d00af64f83fd618153ee21f45afbc59e3935abc9" - }, - { - "value": "100348006057315068000000000", - "unlockhash": "e404bc0ac9a88a7b96c964ebb7415c869cdadd1ca27a55e63b469e0c863551773fe73ca6d155" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["164400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ReGux7Krl+b55wTCvKn/nb1PaXmRH7uOCFiZN8gVLVS1/5hHJ5S478Nch/HM0wLpu4L4vvMI8u7WCHiKVHMMBQ==" - } - ] - }, - "transactionid": "bbac7436523f16aba487f6b3457b7f8330753d5d48aac51ca8a206e95610b42d", - "confirmationheight": 218024, - "confirmationtimestamp": 1564420475, - "inputs": [ - { - "parentid": "10588154ec4a0c007626ba4b066a8f4a5ec39ac651e9176bac755d572ec1bcda", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a5bbb798dcff2e140a887f51d67d19e7831c0ed77e0662cbf30d550c6cb4c77df024ebd0f11a", - "value": "110980891348552592292000000000" - } - ], - "outputs": [ - { - "id": "0ab37ad16d9a0c32deef5701a70193c0755135953caf3320807b30453ce9142f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f", - "value": "82855716934913524584000000000" - }, - { - "id": "02c90e22784622c055f900d9f6bd9a0a1b915048ed96a43003d11146a3879cf9", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "fd228331955821196940260a5d2ef20ce4777ddc211435d784820f693b9680353022bc041fd5", - "value": "5306289253735991460000000000" - }, - { - "id": "237d47317a2a73a477462cc3f1b0803b989a76ae38bbe86d7a537e62e1c7517f", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ff054f7a542fcadc117eb53dfd7177db93d202e409c05ad0713ec7e9067b0c9b5d735aacce8d", - "value": "3473972712005445950000000000" - }, - { - "id": "6820c5e51fadc6514a24a8994010d4f7871e7678e2a57217b0264a93dd13db61", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "413707a43d8987ad86977d6148fb4932736514c81d2344ceae9be68abe84fb6ff4d77cf0ce26", - "value": "3022656791466225750000000000" - }, - { - "id": "b49d01c7707bb2200ad406546288aa310017a35d1b8d7cac22a98fc89401f370", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f96b9591b4003c2660c4488e1cdcae4494a71ff9b7b13323f1a53c4d695915b8ed98a3136a4f", - "value": "2809363225654938571000000000" - }, - { - "id": "003940e3b1bd8f2979b744b675f7876a28b3ee25e4b2d0097e9732dda423c519", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "1855106540760251465000000000" - }, - { - "id": "e231bba52f2a31695f5d08e86f9d76543ba95be96558f5862772f1c5e8e578d3", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e71b4dbd18b41f0cddaa2c252c0f95edb0b3efcb22e314f35892f9f55738ea4e36d551c08944", - "value": "1518286285660440660000000000" - }, - { - "id": "4e07f7e5a24c619bdc1c07f697e902619828d3a67c1aeb54dfd19d4261aaaa96", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "6841f29bd6405d897537632ec92b9d3d57a88e56facd6385dc55acb259f8125628eac047ae77", - "value": "1237792935271103300000000000" - }, - { - "id": "fda1ec69163e588c50c9e80a04c407061f8d0b0a00d839107f7b5dacf7bf4e95", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "4080abe2bd9cce45c3073f1973ad74950168a66deba2a427bd0f46cf5612872a817fd336cbe7", - "value": "1038278208467755057000000000" - }, - { - "id": "217822ec1cf6b11ea9d43e48b5b8ae9715ba4bde11e57a2231e14d87ec304033", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "2898910f36b38b565cf7cb39f9712d173f867d64799aa4d9bbb8e57baafd310611c9593bc313", - "value": "1018649657266610539000000000" - }, - { - "id": "e43f614a1359a3f984cff42a121e02cada0f314e25f3a71cb51aa35e0d7b3544", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ba5f40622d9b9c3e0fcc91eea713f83f1ba232600b88bef774c1b191eecd9ec2b8fbb8876e58", - "value": "1012001987987526812000000000" - }, - { - "id": "ee189de50735b9ebd8b0e792ab4dd0471ee2500c59afc282ab33a3b5b5f1c783", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ca4283c134f2d4fa748c1f4361c8f1b1cc9fcbb4e2239537488bbc458feef2ec2c49f088663d", - "value": "1006657371694807870000000000" - }, - { - "id": "86fd22829d7459994c1b233f7c8d1461e5c220b7cf89e5628f831eb4bb820492", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "891280f209d762e431bd480d7090fe4074e1432e7ead71766ac5d2f30492dc166105eb508204", - "value": "1001566430899968716000000000" - }, - { - "id": "4a6cb5b3d5a5d2a1af416225f4a556cb03e1c96dd0cc9aab248b0fb08c507e82", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ee4e6e15d2bfe66516710c2885c86044df303035804b1c22d16dbc22e5767a43cc336a4f88c8", - "value": "1000452643275459875000000000" - }, - { - "id": "4a02b8333e2424b288b65e5cafc7796ebd4944f5159788930181f1b1724474ee", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791", - "value": "511045523263099075000000000" - }, - { - "id": "a0cdb929fadfbd6a563e804824fe78d7fdae5790e290ba3e8b3c1ea8a32fa8ab", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "466427849460647165000000000" - }, - { - "id": "c757bec435d6546eaf6e57d4bb8f74aafd112d02fee89c164419f4b5401e75c8", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "253450116749667425000000000" - }, - { - "id": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "235783766959640883000000000" - }, - { - "id": "6cafd7ed9d7e5dc15868ac3780d3fcbb20236bddf8ac73cc461684046daadb59", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "208448492753984229000000000" - }, - { - "id": "de2b83444601d959ac7c88cb9e42678d771218dd5aa5f3ffe5261a8219e47364", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "161486659363433281000000000" - }, - { - "id": "9b66f82679ddb7731da7e5e3e78d194b89df7e8ae00983fa20b940198eefd90d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "136086022154300880000000000" - }, - { - "id": "5a4083eacecc2f8e8a74cacc9c278a8ae2b1968f9efe22864d50b89a907cd3f0", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "119169856035870872000000000" - }, - { - "id": "afc1c7f90dfdcac584429bc40b4da79accd39332a90980e81ffc50918d3171e4", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "115803323486094754000000000" - }, - { - "id": "85a01d128c702ff727834fcd8b46ebc1c36736c994249c10027e3b563c284784", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936", - "value": "108551358260504068000000000" - }, - { - "id": "5138d7bf094364aab6d2705175ef1dbc935ee6f7ed2391d0d3545d7ff436789d", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "104459291794789395000000000" - }, - { - "id": "f431faeb53c362295403a8d8f6fa728910d6ab5e48662678942b146075b3be87", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "101181173145349077000000000" - }, - { - "id": "852ef1c5987d14b57e56b810e121e01a8ea97f12247a36a181b3129e10d6bfdc", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c", - "value": "100962148551049922000000000" - }, - { - "id": "5d467e550b7bd604ff2336393ec43fe6d74008208ca57699c378b1462c10ebe1", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "b6e193028a1e5ee4db61fbeaa7c5839177f1d00af64f83fd618153ee21f45afbc59e3935abc9", - "value": "100732381456795589000000000" - }, - { - "id": "1af65eee96aa9e83afaf2c62381e281ab15d7ef1b28e5318fa76c662e7d7bbde", - "fundtype": "siacoin output", - "maturityheight": 218024, - "walletaddress": false, - "relatedaddress": "e404bc0ac9a88a7b96c964ebb7415c869cdadd1ca27a55e63b469e0c863551773fe73ca6d155", - "value": "100348006057315068000000000" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218168, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "164400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "SVsDIjnWlgxgO8SYtd77d0TRFgx+oCpo6mXlW1I7GMo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1025441035638705867900157952", - "unlockhash": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936" - }, - { - "value": "1062623309864831321918308352", - "unlockhash": "86490035920e8350a9d88b9ea6c491a2b89af22475e8a165f8bbbd570d0980d89c6e759c0b76" - }, - { - "value": "1015111583158442148291936256", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1160725582100796788592607232", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1167196052848000969884499968", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1350762055451727513542197248", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2612815993311389035421237248", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1030809714272799913824829440", - "unlockhash": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda" - }, - { - "value": "1439349579754278365077438464", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "3892202111730435187978272768", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1017001657675610507431378944", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1114147559355000502161244160", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1015951373522752705264943104", - "unlockhash": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408" - }, - { - "value": "1011617624251034167795515392", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1236810809917629926551846912", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1034304315733512265922592768", - "unlockhash": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47" - }, - { - "value": "1076175124182545859747119104", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1084494585449293746827952128", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1036000630424100962240167936", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1033426212229991525199183872", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1289601215725597600880001024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1315345183537933650184110080", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1074613835841486470252593152", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1528320446921932391239909376", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1603109239797694295260528640", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1043715477020154850923184128", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1186400345764788318297128960", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1595128707368115174292062208", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1125267681910626965448425472", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1150470188159473899989368832", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1022898937676061425818402816", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1446382961920396579694444544", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1153657234158433042271567872", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1078999011683721425216602112", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1215157395944062164940357632", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1057247048358447140713529344", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1048726543868894474786045952", - "unlockhash": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2" - }, - { - "value": "1034908842648313901825490944", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1082930229461356192339591168", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - }, - { - "value": "1444292233189060504253890560", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2176891228907684244467220480", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "8975233401094286113824047104", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1080330453039604259959078912", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["214800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "dyWP1tez/BS+cinzL70F01j43Rfa9vIOcGnLTxS/o7KugiKCll4muLYlglTLhXNIZjgzzieuoPTTwyVd+2OCDg==" - } - ] - }, - "transactionid": "0d0505384881eb743364a86d312590918467351edfdffa4ed7c1ae44cd80698f", - "confirmationheight": 218032, - "confirmationtimestamp": 1564424162, - "inputs": [ - { - "parentid": "fa48fd9cc1be3917327599f73ac00266c9a55d67ac7f962a76e3e01e372c0eb8", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a18d07754756fe1e076f5b6aef3c2b075e970451e400af1bd264866a90c9a9ae22850f50ff55", - "value": "63146809554871004368451010560" - } - ], - "outputs": [ - { - "id": "cee03da6757c725b9599c7adae35ce349e24fc62657d90b57154a20744dc9ae1", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d311f34ba49a50d8b4f712f16c522a2c26783f332d79623200db11b3f0504b60e87466903936", - "value": "1025441035638705867900157952" - }, - { - "id": "aa7b97b066e902d365fb082680f599d20065c3821877dfee4d58411c6b3a62a0", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "86490035920e8350a9d88b9ea6c491a2b89af22475e8a165f8bbbd570d0980d89c6e759c0b76", - "value": "1062623309864831321918308352" - }, - { - "id": "930c4e6e4f74ca7a959aff9f8b3b1f5ff55e300397214f2c205c4a86af531de9", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1015111583158442148291936256" - }, - { - "id": "e2bda22cb1cf2cc74111687c05e3e8b27d59cee12859eb368700a3f634bb69c1", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1160725582100796788592607232" - }, - { - "id": "fbff02c917578ccc6852c3cb9580ca6431fdc7fedce83f14eb8d2da461c815c3", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1167196052848000969884499968" - }, - { - "id": "f18eb354877e167f98a31e342d70379c6e3ad49b2e680f51d5f526bb4a56cfac", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1350762055451727513542197248" - }, - { - "id": "f439290920af2db9834b64cf628162e93d213f152cdc4f34544560c98baa561c", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2612815993311389035421237248" - }, - { - "id": "56b29c43a3633efbf1b4c6a91762563acc536cf69c5bcdc3fa224a24b11c0364", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda", - "value": "1030809714272799913824829440" - }, - { - "id": "af49dfd4dcdde52e02f5ff22dbf19a56806cae74c6b5e3d47bf769ccb6b1c48e", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1439349579754278365077438464" - }, - { - "id": "c8bf68122eb517bd7f9df9588ab5428f678ab0ce1b093e58035c2ce2c4dafa41", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3892202111730435187978272768" - }, - { - "id": "046e7265d70ee9257df6cc101e5b470f6891bf24362ce1fd63814a935bbf0053", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1017001657675610507431378944" - }, - { - "id": "7d1b1a0eb03a7dcaaa05ce58a47f5d0bd1ffaf120abf96f90ecb3c30ff92a1ab", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1114147559355000502161244160" - }, - { - "id": "58f25b66b71febee1fa8628608da844be8095a3cd8b2fb78b4447f20bcac6e2c", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "a20bb75a2cc254cfe4bef5db78ba654c2be71a1d19a470cafd07368f2d25760093985a02e408", - "value": "1015951373522752705264943104" - }, - { - "id": "f674a3596a1fabd288d022e5778dfa803fd3036e789fd085accc760009451073", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1011617624251034167795515392" - }, - { - "id": "efb308d30a3f1df12a81f1a78ed2e304aee855458d0648b44cb33a1b56085e72", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1236810809917629926551846912" - }, - { - "id": "a3973a38a5f81916784c5dac8565b0eaa52be1a7f681df4fa8c4ab7df6e2d412", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "ce7e4ae6ba47818ab4bd075d3b4564fb3396c72f44761f5939ee82780fc4fd3d463b82c01e47", - "value": "1034304315733512265922592768" - }, - { - "id": "da1ce55ae895f7ce02d73e54d8df03f1c737f9c9b1f65d70ffa32d4e02793c36", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1076175124182545859747119104" - }, - { - "id": "e00c66a8f9fd7687d31448f952f294c231c6bf0af8ffd57995bb1230bf936305", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1084494585449293746827952128" - }, - { - "id": "2522208b6baa1c9370c6ae75103f518aa8f8bb11736022fa8b9ad05d0bb596e5", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1036000630424100962240167936" - }, - { - "id": "6d02ed33edbdc50ad26a6bdc3a19d822203072f37a40586bd7c89a1dfca65e4f", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1033426212229991525199183872" - }, - { - "id": "d0a3b234ceaf3a40ac1dff69f4130c4d2af09a173168c15842e83252d61e7baf", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1289601215725597600880001024" - }, - { - "id": "b8a8aa16222bbde299278e635e47ef4b0f21b16c6ca2e57c5a9a74ffa21c03c5", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1315345183537933650184110080" - }, - { - "id": "3ca3465bf6be4608362dd7561020f2ba561eda8f269244235baf2d78ad93c8a4", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1074613835841486470252593152" - }, - { - "id": "00957696e5d9febf1665d1de19e5c65c3f47566521cae4baeaabfe07e2a55bd2", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1528320446921932391239909376" - }, - { - "id": "615e346c5263a7dbfe418fbc5b5ff4e37949e4071a3096b5dfcb99a1ad252012", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1603109239797694295260528640" - }, - { - "id": "464290fe6cef287020ce6619352c2f33b7af3beccb8220ff3e47cfd8b6d0fb63", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1043715477020154850923184128" - }, - { - "id": "bd27e9d0c7e1b71e581551f2e13fb85f3be45984f4b1721860fd7a06cbd4636f", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1186400345764788318297128960" - }, - { - "id": "03d5e147cdd91b32372e26b6ff90f9c0f99f90ae2389a53fea57a707de0d361b", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1595128707368115174292062208" - }, - { - "id": "2e0142a806140d0e4b0bdd71426425596c6f82f80ff09c98bee10b7022d47236", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1125267681910626965448425472" - }, - { - "id": "0b921b0b107016ec4d4587c8013caa8cecb71f2c832dc96409952f9f02816e17", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1150470188159473899989368832" - }, - { - "id": "7e29c088e3c48477bed55bae77167b6306ef924c44889494f18539df01ee8b10", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1022898937676061425818402816" - }, - { - "id": "b67be6bde4e1d52de7f0cfbd49354d63fe05515d4d8317b483784fc0db2eea10", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1446382961920396579694444544" - }, - { - "id": "9e00081cf3e5f1bd16fe42df3ac3d80b7d49514a408181e0ef499410fbbbe434", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1153657234158433042271567872" - }, - { - "id": "5116b49227a08c4a90277773447b1f3c7ee229822840e516ed5002dbc3b13c8d", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1078999011683721425216602112" - }, - { - "id": "ac352b46d95aba1fe0b02e27860cce762d99d474dbb59dd93f819da4edcc9e59", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1215157395944062164940357632" - }, - { - "id": "66b164dcc3e273b3c4b27d0187b92b700f20355839d4853738ff899bc0f6ff9a", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1057247048358447140713529344" - }, - { - "id": "4dd1523776bf5bdda9e92fdd8a9ef3d53cbfa1376ba3078ea99ccc1bf2637df8", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "3d5d570c06eccda74c87125b7ab613d95a5e2281d5df835d71f975c4a807dc64abd24eb0b4d2", - "value": "1048726543868894474786045952" - }, - { - "id": "d464fe73a2ec8bf13a30ff1c93e0e3dc90f8ae0e6e0cdebddb669119c7675759", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1034908842648313901825490944" - }, - { - "id": "d7bc4864a90bd5b948c79b14d6029977e34031af21f259ed385006f642a82e1d", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1082930229461356192339591168" - }, - { - "id": "f8faa762ba497b3a7485dddb8ead6cf7f14f444e63fc4e83376be9274e9d2c04", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1444292233189060504253890560" - }, - { - "id": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176891228907684244467220480" - }, - { - "id": "ae0cb3d395e99c8a3a11acb8aad47bfe1c17d6226f75fab668ddd8f56fc41b97", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "8975233401094286113824047104" - }, - { - "id": "51587f8bf99460e1a187cd93a66a1b729d4bdaef8b5220499eb454568a56b22b", - "fundtype": "siacoin output", - "maturityheight": 218032, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1080330453039604259959078912" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218176, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "214800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "u66XbMBuxVqGi/E8vTj1Caq5PIrhH2bOOuQQ5RLNukM=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1018920375705694953583804416", - "unlockhash": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8" - }, - { - "value": "1152737836424976455883292672", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1031932629267415887991144448", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1034111377374038295037198336", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1077087733578970762995302400", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1036283396001897039212838912", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1025530758193820965973327872", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1117154821967751655557365760", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1273376399595683211695357952", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1009737719118810558147067904", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1069611034331182067591151616", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1180262202215928510365564928", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1095180637658542534572900352", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1149632862874791413154840576", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1777824647028158654066982912", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1048109060487597219070869504", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1010916748139830871190110208", - "unlockhash": "680d0c0b1a4a6eb6cee185cd6c0176ce4fab5d0e74974ddacebad8c5da47f4c46f3da33d3a64" - }, - { - "value": "1017431498505868495606611968", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1002069064076447352514412544", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1011072580124447460103700480", - "unlockhash": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d" - }, - { - "value": "1004537833783042301567336448", - "unlockhash": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f" - }, - { - "value": "1055880685060933056104890368", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - }, - { - "value": "2214843582313188321252081664", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9190630409181075968544997376", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1214885995563765107168116736", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["150000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hbXddNvnfgt/NcQi5/B/iqNHnSJzlPD+99V7CGD/AJSIYis8IqvZ+VjhsFAQCwJzaBqSue3GaHJVTMoHgXAJDQ==" - } - ] - }, - "transactionid": "a7cfeeeb271813c624795c75965859b4ed390d3240d202aaee935ce3da1fc311", - "confirmationheight": 218040, - "confirmationtimestamp": 1564427824, - "inputs": [ - { - "parentid": "55235f225e34a42ed0d7aa7e0c9f51cd78d898b21cf9dc38a84da9b74ea5601e", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "78a13e403ab6f8515937526fb59c0d00788b7397573094d3194591c60b12ac9eb45adcec64a4", - "value": "36819911888573859118951268352" - } - ], - "outputs": [ - { - "id": "ea6dff82fc7ab04cd998ab4a4b439ae6ef64ce135a3660ce195d2cd0f50eb772", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8", - "value": "1018920375705694953583804416" - }, - { - "id": "8bc88e3c0cf84b62c460c4e241ea510a04f1493a4f5cb68d465005eedb4987aa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1152737836424976455883292672" - }, - { - "id": "f64fb4ce34cf5b17dd28130ecd9ad5eb33fd76ec4b3b6df3c2341e8e4d20e6dd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1031932629267415887991144448" - }, - { - "id": "66dc2cd7c74cf0638644025c9ca02f1c9bc99611638851a791cbac184655262d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1034111377374038295037198336" - }, - { - "id": "4a87b29e57d338cb46f86b7c7564415e5a51b77c14363aec3d1b368b4873fc4d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1077087733578970762995302400" - }, - { - "id": "a2f81f2179d27be8bc086eb27ff7986510028cbe002ba3e5d30442425d0b3315", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1036283396001897039212838912" - }, - { - "id": "4d61217214d6f35787ca1d5dbebe274e2d980d07928c4ff33bbcfea2bd6287af", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1025530758193820965973327872" - }, - { - "id": "1c44678f594f23337acfae07ae7a7e1ab5b5a79e03be54c7574605dce58857d0", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1117154821967751655557365760" - }, - { - "id": "25fdf7c0a12264e719a828e7f5c1496da6c2f400a8da703155667c627fc520f5", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1273376399595683211695357952" - }, - { - "id": "8a3d17a190fdbb24d2f3a92996e97aa3bd6e151c4ac076a054784137022e37f6", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1009737719118810558147067904" - }, - { - "id": "29c60e088d531d6b17204202a08f5bd405dfc2493176a8d05251a0de1031c88d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1069611034331182067591151616" - }, - { - "id": "2d34cf78734a23c642685ab290c59425b924174f3a917cf98e90ad6156ad0dfa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1180262202215928510365564928" - }, - { - "id": "46868c0ed41b9273d13e2c6889b9bf338be133e8c40c395e7d59136566ece00d", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1095180637658542534572900352" - }, - { - "id": "0b011febd249f21ca2c84151e9fdfd46096b201dbe10a03c4273aa6e38ec2df7", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1149632862874791413154840576" - }, - { - "id": "ffc49c13cdff68c47bd2869ffb6d1b43d3e529a68df53d157098f1a425fbf157", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1777824647028158654066982912" - }, - { - "id": "dc79d3fe1a598ecd096d7bdf29b65387097b8e10e4e3619c8d25b0b9fcef220b", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1048109060487597219070869504" - }, - { - "id": "8be24034d3e7856224a3d2ebca323a2424ab4370f3f29443be751d40f883abbd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "680d0c0b1a4a6eb6cee185cd6c0176ce4fab5d0e74974ddacebad8c5da47f4c46f3da33d3a64", - "value": "1010916748139830871190110208" - }, - { - "id": "a7859450837e3b460845ba4fdab0fd25c9ca993752517d0c8fcc80d4ec610d95", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1017431498505868495606611968" - }, - { - "id": "a6063d49e04a0db303048ecf4d636947b6fe9d51238e4096e569b39398cb49cd", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1002069064076447352514412544" - }, - { - "id": "46bb2190b119aa0c84b0abbe1c61af5dfc1e88f73ac6ce12c8fa387e3c2f885b", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d", - "value": "1011072580124447460103700480" - }, - { - "id": "549f30fb69f1ebd775f5b01710bdb1e3547a9fc7eeb4a686afa920f31ed89c70", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "4754c6d6ffd2a5089f074b9c3cbdc493ec6fe8df7890ca0320fc343dd9cad4e3d5c469ba049f", - "value": "1004537833783042301567336448" - }, - { - "id": "60226cfbbc1ff22c7c2db35047bcc9d8acf91481e95a8bbd82fbdfb5a0575cfa", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1055880685060933056104890368" - }, - { - "id": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2214843582313188321252081664" - }, - { - "id": "b5d66f2579c2c2b6b1d296bf8ef44d81fc342a66e3557973ac21363030cbd6a4", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9190630409181075968544997376" - }, - { - "id": "828139fad223fd90ee28c253c8e67b50ce4391110f35f00118e1ae6a8c2ef28a", - "fundtype": "siacoin output", - "maturityheight": 218040, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1214885995563765107168116736" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218184, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "150000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9XiVOZVcFc9EleApV3aCA8ztX7Nel6qcdraAMzYl6T0=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5542949651058464152195358023680", - "unlockhash": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/Fj5fK89XM79ZBChrI0O9S2Kd2HIMW1XvR/s4Cg5mdgk2oypN9SYuXF+HfW3F/XhfPrPxWtc5ECwFTy/IRI3Cg==" - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cPjFVPIK6KL7nqFa023sswaitVfTzm4L8+6KZ1BIf28vm30sIJgAsVPcJC3Hxmo5hoC4cTpOO6J5AMAvYm6OCw==" - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lw977lhyNNz6/mA20+EPTS0WfOkAAdU5FBperIAYXOicgb0VkQmb/3W7L/IwbNn7I1F/yT0qcF9fIqfZLDq4Cg==" - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DO7ggjlNdgQ/Bg2cYpar1GNa3biYkyRDz8DzSaV7vXsX4yhjvG3F4oiidT5IE38oeK8oonXAOJlp+iVZmWL5Dw==" - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1Le7R5sM3llyWALJZhc0y8quRTkVvp61XXgWPQIWOPQcfRldJ2+7gcnuJBZYWYWmChu6WVMnWUAvl3/6tM26DQ==" - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZNsWSIQoTWpX0L6dIznVxTkk+35aLVX6/Xmnrt9ktPblkyk+v3ibdjVJFNU5qs/73pUA+6gWYDrLWbnkjqAqDg==" - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Bs85Hj07K44ORn2N3mtN3/x4sn42du0PGd2lsjADfrLHS6pVoIznFMxPRVzYwsRPubsokbQ3ieueCY1pe7rvCA==" - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NdoMgUzJETiY8gXDmBXe7fpM2T0GUYjy5VAiDyJjInmnCXsS87GK/cnVxka4PNPC1yt0FDYLYP8P2AheS9enBw==" - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Sra54r3+aVzD5MRNq32E5FQS5q3GQIgrWeBuUoGcXDA1gczImmTvIte8tTEgsTmlw27f2UvMhxn72RUjrd0bDQ==" - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HFkNFTvWZdK4gqkGgHA91v/VD0JgfVIILcLSsQ+a0ZRmscqyXSci7Z7yQl69iJH2RfLPNO2t/Cq0PyRoFPGwDg==" - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yjKOEuOPjezlPiRUYvnA4oWs00GiFtYz1k55Z/4wXV+vh/2UIZHe05gxVoBlsTjUUGVpUgUYp0wBeSqDHza8Bg==" - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "72HohwXNTdQooSR3wAng/YEuRNAzT63rdAoFr75blLkn36bRlxlVZQU+fSHv3VTX9ew9JlPZLpqbmazp0q5AAQ==" - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/1JUwKpTw88bP4K/TjFZJHCZU9z1dwZn70QYRPi5Z6bl8fCfL2kPuGaEybpO2sa1vDOQFPpgrxIJLGKkjDbPDg==" - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JTAXaV5EcxGkSo6RMqo6VlfIo7ZLdrw/K1iNri4O7c7vU1dkdLhDluiKNGu3EQFTx7fqkeuGU4IPFH2MIMjUBw==" - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oroI4Emr0B79Gw7tjWVzHERCv3pY16a/k8IGxOyv4pq8L3hl+uqhBdaAr/5oxFUjmanNK3Blw5eKMoH3A4clDg==" - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qtyTi3FxCAUOuiI6v+9VhDg0uzQ7eqI4okbmsy4KJe9wNvl5VpqBUIB8dXJQFDyyqfSDO60BP/38ZN9wcNclAw==" - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9zUEYDLipZb5x6wpW+ka0HywsLGpo2MZAC09AOWuDOTCwvdnEQxJiUNJK+bxmei8qB8rIXoMYkOxVAtBkDh8CQ==" - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G4kW9s6/gbukcNkyNkCF0VDSZ+dm/RJzz06MgcRBpozEqq2bVr10M4q4VldftYMJXA8tPWSCr4j8bHy+HTYbCQ==" - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "T1RFb/jUx3sB1kuj0Cus9D2sLJDkOdkIrcy9X7tCIRkO3lsgPtLIBTWovw4gqzuhpxo94Euv19z6dQo+2nEABQ==" - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "58Mlubx532702+HPB+TDYSvppd0tJpEuB4xCkAwxlGFMlEZwGjWJriwjpVbZqUVQ3SgYFsJLbFBGJL9em4+8CA==" - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oJFNl8j23M1arn/CNJcFhg1DKgbOlKI397hvZj5En35YbIietXM6dAvCSbEELQlW3k2H2JvBx2Aof3U6ieQwDg==" - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vVL7b/KE+HKsbGGkci2agIDMVIK+eSa6++bW9Tm2tC4u2PcjL0+uGHPb6uV45/kqHCib1NFOmoc4ZUUIPXe6Dw==" - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "U1hG7sPDYA7lm1U9uVFzapRMac8ZmyiwDNxaIXqVNnZJ0BSqQ5huODkmR/PfaPdN/1Mv6O3O96ko+XvnNDR2Cg==" - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QpSyn+0B26MnmPRpoW7UZz5c+sN2QqtE/KV8X41eEfGYtr6NbuSin0NL1ihKqjvuOK+z52jkIixRPZjgvdsbCQ==" - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ELoxK5ML9wdT3f3/gFuWc8FH7iJ6KIwXzeDC5VoWrBmtXQ1fSAc9QxZfb6NB9TazmY/0lfAlAZdq4s3nX3e+Aw==" - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AAcxw9waMX6I9EGbnLG7XZKXuLS0OM0+wnLID2iTAf+w30osL3yBM9U8K8S9vrA4OCxFFLCMr8Cwq46v2tHwBw==" - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "a2PfsSY5eTDy4hPF5DkjPTLWTqVyMABqCjAn7KKlwR7HyyKBLt60qSgCdADzk+lrhh2WHm5l82zc1bjs+8KeCQ==" - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qxnx/6coupbIP8KOrKWqO4RMjJFS+c35zSXouVBx/JZTe2DYv29ubthwJKyTtZx6mS5SE/2BIhKIytpJ5tboBg==" - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bKFR3F0voOvIxrrfbkkPhkDhZIBDfbD6yEWx0+0unCnCxrMDTdPvwhU+yxiZ/I6KmBMIgZbCxcWP9olv5xoRDQ==" - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kkAdd9zoUCCBiXpjf3aEpcVwnMAAHiIV1euLqPxpjAQ5livPHwOgr4sB/8mPkJzOeouycVnWpoc0AmtX7/GOCw==" - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6tDPSTTSFMngRxN+Oq0maudDqku0DdAKzbrFKjUv97ReruO9IKaSrgs6YJ96lHIbX2mENYmXqgp/2/ijA88fBw==" - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vYRZSJmdwbrvtC02cRr4r4WGlXu5g7XVV6PTp/Z1bfGHH1h1TZVQXX5Vfsp3xOgOvAmcBheJeHQAKeMeBs9OAg==" - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "94DTtj6OpvhhU5HzoRUPKuu7iAGeNv07KFNBqorwvbZK2liUsW66SNZXtow2RTMe7Y+Lh3/Mr4vx6myhQgsCAQ==" - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cbox+iU91QubHpYCzEYVeAdsL255JnuVGv2NDmg9r7yLjX+XUn5jLpBfQwOofIYGzNcvJdyna6eH8JPQVnMIDA==" - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "26wUHIjimxRxbA5owwjS6/gFSbp8+kBQ+YfxT1ewOorVBWfzgHMZkjHItJi/GNrRDN3BvExa6QiVFTbfqPRjCQ==" - } - ] - }, - "transactionid": "1fcb35b160b1ac3d483f958bf5fbb7f9954f0574afcc507284850de0c529cd3c", - "confirmationheight": 218041, - "confirmationtimestamp": 1564428072, - "inputs": [ - { - "parentid": "014e9e744e924b5475dc6568e589dcf35efe0543cafe4b1c66d65e6ce7ef2a72", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "2dfd28e09cdb1f5a1dd794a130a65663d4f543cec4143d92deae127cb96af475757355e32d57", - "value": "5432175930916906977014389432320" - }, - { - "parentid": "6004e95627eea79e6bddfe61e9d61f34807b785a6b930fab7519a1d3d7dc3e18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "5504259017681547906286354432" - }, - { - "parentid": "ec2adb2b4863962102ae163dbbdeb16d37eda9bb61cc18dd48362fe7010470ca", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3561990578501193094771245056" - }, - { - "parentid": "dd1b37661d9f229e595b7a0509a0baee56758a49a7dde71951fb607fc556ac63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3288371219855822684210331648" - }, - { - "parentid": "e33f761a73ca1f33c0ed4ee2801d695c8fc3e2e3e5b25d24b4092bf4bad7e02f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3282640337140925181552754688" - }, - { - "parentid": "0e93f564589586cce8338c40e6d922edf8bb5ad29c800ca883ec028366d8b052", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3274398471743365783324983296" - }, - { - "parentid": "205573cee12bb3f7e837808df4b387392aed760a6a302e057667c90955a0c48a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3267594308245081556999208960" - }, - { - "parentid": "afe019d9000093b9a39b0c0d940a41754496682cbc899c26b3f7499f8151032e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3229786548205620783327739904" - }, - { - "parentid": "a0fa27f594128b0cd5aa9c119fcb3e3d1228557896f1d0606812ec1c111c2d86", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3229057446346631357824761856" - }, - { - "parentid": "bee0b21b6832537a31a7ee1fe2f8d140acb49766882cfaa46269bb04ea91e610", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3224950119743171155799834624" - }, - { - "parentid": "1c3f81f7243b86d7f0bb907f0c1abae817d23ae09bf8f2a68349acacd92d7492", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3217982948224005864807202816" - }, - { - "parentid": "7c34ad925f7bc9537c5064c69e837cb414265e6aca0c9840524134b6dc773c90", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3212147977209125452763889664" - }, - { - "parentid": "99344ca49a3a10e967ca6011dbb49cb59bb0c1535f34019ffa5ba10e1d11cebd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3211091616739899893979545600" - }, - { - "parentid": "fb4e0ae04726a640206c7ae366b087f05cc01700116e491db29cb4036a48a0f4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3208739631303085708239962112" - }, - { - "parentid": "e8ce4965ed7ea76d3d6539ee41bd0da8b194eb2adb958eeb9815ac94b21aecde", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3193915442875237908422328320" - }, - { - "parentid": "73d0214cce0481a5ce9f24f5ed4ef125011c120d5307d54cf25c584264f35440", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3183610962657130799572189184" - }, - { - "parentid": "7f196f3157f66bef2cd12ab955d2273d036ab4fbd91d1bc1a32b70d9cf4b2bb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3174493886247772046279835648" - }, - { - "parentid": "ad7c3572c7722b480f84c00f66f87af7a2eef15958c2e5d0c3ae427c66044d58", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3173885419322656216393449472" - }, - { - "parentid": "a16b66f87bd814ce98ce50dd9c5c2c19c7423a8f957c0c25b3e0ac9d66635edf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3168626979692914659830005760" - }, - { - "parentid": "8330a137b6be3d95bdc80a58cc7744a37a07b51524996109130a3ac58e83036c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3167279906677919652855676928" - }, - { - "parentid": "b6183fe97c35a57e70e02f242cdb78c8ec1a4c9e5e3386c90a1ff7213f9fc6c2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3161755590363353564714106880" - }, - { - "parentid": "8787ab3f0f7fb86f189778b55fb5d3541e108d8dca46da34fce3395f9c3577ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3161065166957131070162599936" - }, - { - "parentid": "4433203e01102c4c094f27263b5c11fc5c917e37062874f3a0e4b1a29ae817f2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3158033115640491102175232000" - }, - { - "parentid": "e972df78fda943a6fe2b2d357e742161fb105376b7850bb569ae051a8943a855", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3152653459423747507828555776" - }, - { - "parentid": "5e9fd1e1a225d07c9d229facf0ff1df38eb5d180d07fa693a30d9eb4d0afe6ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3137357948729932032604372992" - }, - { - "parentid": "9115f28809dcf71863cd9c60fb7b9267f1a29c0fcf9537481c8d421bdd421c77", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3136750578839844021629616128" - }, - { - "parentid": "24930dd9d37e965156796b0faf37ccd295665191e0cdb5c87ba0cd7bdd41fab9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3130597251106963438274871296" - }, - { - "parentid": "65e284fefa41ea275faaa347c46f8754a3832bfc2164003cd3d06fa2d753996f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3129974421724445266707218432" - }, - { - "parentid": "a1a9c24356ef7588d6ae653db19f9523e32fda201a3b26dab3beed71ff8f9134", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3128791636860806171264548864" - }, - { - "parentid": "18cf4402fc884aecd2a8c1b91c3454b1b031424a9db570cf211dcb7e1a31a71b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3127386385022183208814379008" - }, - { - "parentid": "a7c59b14f370de052d1021de16c36c41a05f0fc70085a325c44cfca52da6a5f9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3123927052770884670640357376" - }, - { - "parentid": "93f59a80527e849cc55a5718aaf322ab72b5af29ccb50e3353f126d7b2cbc961", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3121946699926109941066104832" - }, - { - "parentid": "535ae30e9244cade11b5a844f396c8a8449a6b3850a9c00bee7de73384a84ded", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3114897708902449756072050688" - }, - { - "parentid": "03a16ce5d13e2a70e2b99e446aff10e790ae1ad2d523baaf4b714f3c35e8d4a1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3113015151872237160116518912" - }, - { - "parentid": "8fb74cdbeb25686cec9c1bd99c8070dcfc88765485225d25c3b69861990c6aa4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3100745155003488561656758272" - } - ], - "outputs": [ - { - "id": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "fundtype": "siacoin output", - "maturityheight": 218041, - "walletaddress": true, - "relatedaddress": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495", - "value": "5542949651058464152195358023680" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Z60DRZUjk0ghKauYwJlStDk4ldWDal8dldhoniYMAFU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5542949563558464152195358023680", - "unlockhash": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SdgEa1AsmOXD1n8ewyHrQYWdgfZl+MLwfRM4v8AltXR39tVYdXRlusVVHhDWn2lpm1nsq+m/4rX/yWTtFqbgDQ==" - } - ] - }, - "transactionid": "b377e0f2b4713b09338671d4c9379ea56ad4b905244a6c51cee26c4d5c8d6f06", - "confirmationheight": 218041, - "confirmationtimestamp": 1564428072, - "inputs": [ - { - "parentid": "df0b2919a48332084ad89e95a9219b10787bfdda5738e346c21f042c6339753d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "4f4c6e94b8468a76129d6f038453a7705eb394b0c2adad1fb81b0ee0578c9c4e3a6ac3da7495", - "value": "5542949651058464152195358023680" - } - ], - "outputs": [ - { - "id": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "fundtype": "siacoin output", - "maturityheight": 218041, - "walletaddress": true, - "relatedaddress": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd", - "value": "5542949563558464152195358023680" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218185, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "SgHmK9vZF3HUlrC2SJvduGtbR5EnOlAOxl2gKcWEWHo=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5550680018129365468243192289543", - "unlockhash": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hJfizUFaQh9irwtB9+HPZhrqUYIMgiyUtY8ZmleikAqbgKRdU5H9AMO+oOETdoH4TXqjmyFgDG/nE3CNyr8xCg==" - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "w9QZLJq4PxyETQ10scYdRj9Vg1Uy7jtAHrdtpxVE61mCrJkQ5jEBn8l5ATDiWrb6n/U9Yg2OJRSaYX2CCuppBQ==" - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ho54eJ7aDqFpUBRW2coVs3/lTiIMFPolBbF5B3CBNyU6/Cbuf3VSzxPjaNoPho0vOyrMA2q9HDZt8aSmHPfGCw==" - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NLV0UvlPhxtNwBK9tTfpELbJt96kan1zTlQ8STilh2TeEUfMFrlWJIfdBGv9+FUpxSpF1PwEEQCmogoxqwdECA==" - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bwhsSJuYzjYjb1GXl1q2HWebCk2OvvVA9Km2Ql+oI9K8bCPCAv5T+rYJqYB90n8R7aUj9GBLbj3d4TgV4HEyCQ==" - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kaMKHyvWefUwjRfU7Ny2+WH8i0i0x3gMkr0WGuyd5iZesr4L/ts4uEyrZBAHkEcxFTiDbifJrw7iwEAMsA7jCw==" - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Fi0+qh21DCetPP+biuDsIgUOPNbmP9SgnzGFriJBOtGvPKpC1Loq6kOsWhSL5Ha0a4hRNAMkYAEevfFsBnwUDw==" - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RWU5OQnro1wlG82f4qj/YHlhKq9BpGRE0/9vlmPF+TB6VxVkw5DbssRaDSZfDULBdYKIuxdYlg5YYbDxzn7IDA==" - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lVtNr7KwOWOQ7+rvhfRnT5Am1AxgyrnKuzOJSrG34z2GCoPJLhas9f3yVZx3iUTHN8F9Hp+scc3pQcfEiHalDA==" - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "c+VEKwS3W1NRRHcgusemvw9KB2ey/go6/QD3KCiY7wD5jqIr0jLKPJP5+UDlsMxHdfgjffSScDlRbHNB10WGCA==" - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gtjJ493nKLbI8zRbc0v+nK1q3FQQXsNIUfAWzCg4AxCGrKws7ei06L9E1jMkK+CRF8aT3ZkNulVUB8hLWD1xDA==" - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XBxb7AR1F+Xa54x7Us8Xe77FJONqZKJEMTUcc0i3VOIN5rmqJAN57SnkTAP33IBn8Tv+LROkBkdI2QRNm4t1CQ==" - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+fFJQyymufmJZnAL5pT1lsidFCJPVsPk48IYv/OZdYHrsocQV+23mDFFBZHQENIYkAkERtf2Md/5xe/Lt2g/Aw==" - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "62Foww9i7aL0oMvK5j42axY6Qsl5eCvlmzeo+rDVV4XzQtOUjBIqjOr3037e68Ur1TAmTo9LBJ6CzY4zPJXUBw==" - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JTJtgZKvZxyMC8diTHZrG51mrv2dNxj/9uF4L0yKYeI/wV4rlWjAweptA4lQGJf/bEOBigELASnFTvx/UaKDCA==" - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Lr4HUKzLKpqDwk+HQnaTARTcF6lNgoZ8IhN6UFJjk+Mp1NCNKzg9GqaAx0hmAKG5Zw0JHsxFdDv0mZ8Ypyy+BA==" - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uLYtyBq7SK9k+cckDooA/Ls6f10cFFvLsZkE2NDG5qRHKCW74T5fMKQ1SG1P+SzebFkjp95PHTxW+LbcBSmGDw==" - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "20xZBtjXsHl76668BZYoOyi8SvnhyipjiHE+0hRS29I81EE3NFvr+AT1Ddq7E5MBLst+GAkXqlzORhviOl7JDw==" - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CvSMDUJq8v53yZz02HsmSfDnqR/0Jw0/aF4Insx164CBFL2R3TWOUvnTSZJO6M6y3rprIosDiL1RPYXGBLkeBA==" - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ezuPon0yezz4KrcwB0f13s7vqbRhCj5LjVsKvuujjCq2MGTgFKty7Ch+45M70YJGWWCdhYYna5jUy5t/RdhRCw==" - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xD/l0pnG2LweEPpb9y4SwY6Zyd0FjjrNJVu0Xhx9MUTkt9ojbPBGZCrg4ltcGZnXb7GXuQk/Muy0Pr13M9KZDQ==" - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bd7kKIc3uKzCUXw7+c1oIOsbNiDJk98Ao+Hrv4p3Oim4mk/sjIZT7rR58+6FWFQIz+GB6EIlSgS7PZrNzeOGAQ==" - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Q8AHEAL7B9mnpWylVuhcrMkpV0Egen3FInMD+5Ibu166A+YB+N/iXDbWFiL4len/9sx6zpi0Z94sjK2KFv6VDg==" - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Ix1Wpygieu1FEPquXw9tbqC8Xl+2t1BuyAUyGZ8q+R0LH3XQ5cPxIT9ggsgPfqjial8E/XJBqXKrlzRGWIBCCw==" - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MccHI6cTKN5lfVNQ6TQa6S3jZ+EhWRe+eAyUDTnlTvMn+XHDkCMj0fAdbG56nujfY2GmaMnNhHIqgQ8LPp0NBQ==" - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Asd2ri9Bm8XUrpI8Q+pm8D3UjABRgWoxkwCJlD5CvraRLqLSSsGw56IvGXV3i0okI9e5l25jbR4mreAh8ipOCw==" - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4RhtQIj3NA5y7OSa1vRtOQRmKUOM0ELoWX9GKG9m3ANrNFo32nDz+FJhnZgT7cNPt5t74eB5L1O+NXVlG8KAAA==" - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Atmz7WY7dRstcK+nRQnIkxt+vuTDOWM6BRQdlPvrOcrRPnFUEpf8YcVUTmNDMZbRpdBPkE5B8hN9Ig7j2zZBBg==" - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ncPabmrW2TTxCVjtPhl7ztTbc8cYUUYgKzxkdV6t6EytcT+Te0flWWhw4mqwE4tl+bpiQmr1cTZiPXCdgvJACg==" - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/wn/nalNoBZpf6HaONSnuI9Y5jsb8VAqOQJTFuE2BtyMf/BB6FSiNur7GHQsVifB++5kneZ5pmfSXIiUGD9UAQ==" - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ucl2Cyk45GOiM2lj5O779cMmA8ethBjh703z74oUSwQOE7rxEJ9H2XOyxXmYPUSpnHo4ixGQuzI6BY1DnNLoDw==" - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wvxyAOh2iFZesEOZ4fW8FnLTlR7296f54tWa0qbEt2zeRNSxLzwP2G1ThvHm5H305PtDKs1XlV7Zb2DlbYWCCQ==" - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JFJTuIAzUlbmXsorE+nS38cpQE+6Qtkz1I3myvWvp+TNHXyxJdOW5nqm49Y7U1McCMmGK1y2fBENz8gz3UjnDg==" - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "85lt6Hz1Hv/V4Bn7SFeOFde5zuvXsXj26OYem/wUJJ0Sf0+tthX/fPZSuXFw1kbBJoaUA13DBF+PhFx8X4OcAw==" - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/jm7uj+fmk3v4PPlSyal4DM7bR1RMf8s/HfUxHWyJk9wNaleBgPs6AwzH4zuYbK53CTMh23ca+4ACrMxXm0QCA==" - } - ] - }, - "transactionid": "a6e4772345f7da8415b595d2249f85d2bbb209747e520bdf47f3fc4087138f87", - "confirmationheight": 218042, - "confirmationtimestamp": 1564428203, - "inputs": [ - { - "parentid": "7db0154ef3a673d759c0c38aaeb32d8f70c082a49e28963c09085a67c60464f3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "07c240542b65db6feda6a59768838a5dc888ca78b8396a50edf2b277700ad8d7f7572291311b", - "value": "5446751483434902796541962852615" - }, - { - "parentid": "3e5853fb611f3594d01a74cc086bdd1bb5bdfbc0d55170668adaa796b607dc53", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3099714267267643704430559232" - }, - { - "parentid": "78d80d3fd876412bc7da79ca276176e3f158a881a49715fc6a03bfc3954f6f1e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3096143119509120656552755200" - }, - { - "parentid": "7f82aeaf2a373631189e5c1711b828e08a50bb6bb1fe4aa2cd783d12ddea76e0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3092687553212140693057699840" - }, - { - "parentid": "0981252a400bb586693413b74cae3e0d96841a3b1aaa0cade8f754c0b81db8ee", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3091782219052817128641003520" - }, - { - "parentid": "2fa65f1cb13bf503dbeedc76a91ebc82c21b7f7554844bc5a0d17e23faaf9285", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3091159159630118311912538112" - }, - { - "parentid": "624aba1bc51384015342d51509c8c35b3723d4e89fb38b198534a020125cacff", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3088379971410822680910233600" - }, - { - "parentid": "62986c2125dc346bafcb1392fca8c074149ca416e002b4a5f2d88ee6d40f4705", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3087703968194453694190714880" - }, - { - "parentid": "317a2aa0075997e3d8411facdf93b2eef9d705174b008d0b2e086e5775c06a68", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3084216905448530675759054848" - }, - { - "parentid": "8127d13cc6da7fb473b1bf27abbe60ebd0a6b2286572197422fc723dcc93cb37", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3081994202758995517720494080" - }, - { - "parentid": "b2ef400150688d517e18176f9c0ac289f7f1791dd3f5f1e2e85f770744fd7a08", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3081023501472644106630987776" - }, - { - "parentid": "343da2a9b0126e78841a2efc8a442c1f1640830dacf4f8f0502d254df689c074", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3080057409761244787886784512" - }, - { - "parentid": "13376f50234d094e426cc983c9fdcc131d45ddca92645949def1b8e4a676e95d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3070216659470118832746528768" - }, - { - "parentid": "2384a4574b5658f63c13ee881c644623b98f8283b115bb2bf7e1b1bc378c59ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3062931692696521664154828800" - }, - { - "parentid": "30aeb6f5136c1a3195460a5760e63450b0186928395386a38f9f45876b3fdab0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3061962156728214619311570944" - }, - { - "parentid": "d4065673e4aedda2192337e013d85672cf5cc8598f099653f96061c077495310", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3060625698061619275126276096" - }, - { - "parentid": "8daf61055044208b27b55b23bf38075d7b6d0850ccce384eec992ccc9db92735", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3055866468140838584041078784" - }, - { - "parentid": "105637ddc9e28389698bb75b7d5fc927524d2dc5b0905dd6c850d8dfbbdf5fb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3054416069605585993911500800" - }, - { - "parentid": "ed3522f4985240559c7dc76d993a5c98d8cb008c75225ea48b3c9d386180dd7b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3054025682227114814180687872" - }, - { - "parentid": "0dea9684fbf1538cf749dfce2500305bbb1d0d09f7ba1e4e9cfe363cd7e453e0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3051776725451925742206058496" - }, - { - "parentid": "200f5bdaf64daa50acdcab119b9d299592bb1e33a617285445693a7c52f418b1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3050353832177095689860284416" - }, - { - "parentid": "c0dc3a32ce200de646d5a2a5875e6b464723b319fd4b1873e8653d53ed4e05fe", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3049962809392120417012940800" - }, - { - "parentid": "6c5ca9fa69478d13ff0a7a5ce21636686d2f2905f99af0a4b7a7fd24b02e392a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3047340500830891075063250944" - }, - { - "parentid": "fa2565610843deb7165d2e4a32660471b11ffaaf0a88b1ed63f19fdcf9511912", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3038361740162398792749940736" - }, - { - "parentid": "edbd60ff23329b3958a7dfff0b4543c7e8a12cad3a2a610282bfe8e44d1f1680", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3037191256144532233655418880" - }, - { - "parentid": "b78a7bf1ed42e9378569fad742400b2a37c5cdef2f5c4ec75fbff7a82f01f096", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3035728842957115764410155008" - }, - { - "parentid": "2ad15cc4e5bebf7a592260ab496a0cf295efb7b0a45f882988985eafddadbab5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3030336176656376588278956032" - }, - { - "parentid": "c74ec148e5f59e8e42a1118490ba31faa58896a15fe863713c1a9dfa01ad6f3d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3029593432549038995508559872" - }, - { - "parentid": "0b194af1f0069395c2b96a1e850cf8de8accaaa96f43f864342257e02a4690bd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3029217968567425705491562496" - }, - { - "parentid": "cb4623c7a59128f9a2445bcec67835cfe88f263f3c3d81f9cfd895d4d4647923", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3028354756284659680111755264" - }, - { - "parentid": "3748dd8bc186c0b037805733c22528c9b6da33a8ff96eda7b324dc5320066f6d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3028015970718165652635385856" - }, - { - "parentid": "c2d67b5164947079716bb6b8b9eb8571714e6dd6d0b1801d22af734c6c9b20e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3024521267641755432009072640" - }, - { - "parentid": "e3d9c7db5ad8f2b07613b5cab7427633b31d36a9e6431e26c27433c3344e3b17", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3019610762136738360471846912" - }, - { - "parentid": "5ded8543d8b9ce30dca39ca6c5b50e50b93cf78746c7efd1f052e6fe1627d6be", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3018418090764860456678981632" - }, - { - "parentid": "40cf99eecac5a49286b3c316c3ce2b7d0c3ecad983100a7e79a869e8ee8383f5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3014843857379025373919969280" - } - ], - "outputs": [ - { - "id": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "fundtype": "siacoin output", - "maturityheight": 218042, - "walletaddress": true, - "relatedaddress": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd", - "value": "5550680018129365468243192289543" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "lVdofb3+64wfQwOwVXCt4LqIsdnLKQJ5LhM+tAh4qa4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5550679930629365468243192289543", - "unlockhash": "946eff41682d7a2a789532bfd4b94b4e82f3c5e27ed01b38db9c382ca6ce0573e1ee99c7bcf6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cHkjH1uvzSc8f4EUQfs7iT7hxVBfrRZXVUG4i5qvuzQPuVPyES+kNe8w2al+BlOroW3kO9avd0c0dOD7O9ijBQ==" - } - ] - }, - "transactionid": "a767d14c55d099be4f3584d197edf9a0863638386725adb2d504853ac8400615", - "confirmationheight": 218042, - "confirmationtimestamp": 1564428203, - "inputs": [ - { - "parentid": "12d6bf630cb9505b99966fe8b873fd418f92070c6ef55a32c2e218b4d9676d0a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "6b6a0e35c710bbf136defb988a86c93ab055e95ba31fd0d5b9a77d19eb54cf97ccefd0411dcd", - "value": "5550680018129365468243192289543" - } - ], - "outputs": [ - { - "id": "aa4bcfc663029472f17f6440d63937ec7febd71a9a6e5be80d9eb55f9db112ac", - "fundtype": "siacoin output", - "maturityheight": 218042, - "walletaddress": true, - "relatedaddress": "946eff41682d7a2a789532bfd4b94b4e82f3c5e27ed01b38db9c382ca6ce0573e1ee99c7bcf6", - "value": "5550679930629365468243192289543" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218186, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gvbWZ00J97TkZQKGi+SUIWq4hempzy+JoVKaVtOgyqA=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5581516802865427423962213769136", - "unlockhash": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qyFD4mGJKgw5zhpibcGKh3vtn1n7lgJFSXaRrlLrr0NYmtnDYKFgexGgx79w0S4z5ISBl800MQx7kwqho7aPCA==" - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qJj4ty7/C+4xQk3J/cRUF+oT5gWbJc6yfwB1OWzYTZyFXBzmS2hSJLacfI39qjI8CzWseJ1N6C2gLI32UOhdBg==" - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tbTo28QtN53GJoNM4Cu6gj/GIGlK7CyPTsbKPMv/WYWgCoR6vc80IXbXM8ogFw/BUownMwLjrst/wseJcsvCCA==" - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JGaDsDVDQCXkXf0GUmOmsbm3US75jn9yjd7HMCwYx8/fC+hT3D5esnKyNidNjSzSqoiQL1W9pJ0clw2Parw0AQ==" - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uaTIlIAgCmEKCAjToHxaECY58unZ8/g3tw16glyvWC77MZ/LMj1BlahZaxePJKQBCMGDAugHaqKPuUe3SqVkDA==" - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+IFeXC/GOGrJRFgzolsltXXX3Jj1fNuZrBx65P/ITd6pNgrAbcawDLjQSEgmqo7+IcfmTyZ4Yx0DltG//NQnAA==" - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JVFkVIXao+hg2Iu8CmhH2oJkSVgX5Qnboed7w+rfFdlKlEtMXbipJ68QCydmRW/8ZEgDKd/XS7+yRQs9nkH5Bg==" - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6z2/aYrqNOEO9L0ESawQlFTX/H6W4Yhoa40niX1HvUqWOwP20tawkHwEdtGF/HkHshtwl97P7qsQIxdURmTaAQ==" - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WK1BgYi1H5O16pQpuZr222iL+2hSA+8i9BVNrP8qLd4aoKyiDq1B8yQudeNHzkWZf1II26DJ9CtNqAMIUG9XAQ==" - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "224lHvhdRHYcu4a6ouO218+RdHAMEIQDVRafx0Xdpk+qoFUEWIX9iRrmagqbjq8TJYoUA3RpbQXDxMb9pIcQCg==" - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tgfLanwBEBucQDL57YIPsbkYDtrvz5dePdJ9LBVWUW0Zp8eJ1zNgKgGtE6/wBmFH5nthu9dYdvmTp6QG9ekKCQ==" - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "S+LFLE0+m1ctD4aLHetqA+c8ELy+5CtDyp0l9KBdnlQmrKMDRPdzta5TrQZAdOf4SHTp80/ES5ZwVHa5TuIPCw==" - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SyV0qqXiZQBIHIsb9jRvOa3/ogeWA06ihcIcA55GH1lxgNQ+rFZWaW8ZIIxNre5lK4JYGIXuQg8gdqPFjTUZCg==" - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gCQiflDgNK76IAkZKsdW4iXvvWUg9K6s8woO0VeJuGPs4j7zQiuRGicejNmgbpRVxaEHsbhxhKZr8FRCCdPoAw==" - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "akNPFBAAwb3kQaYCQxwZX9GgrYXnjtzBNVg48QeXRQ/bdcggrsE9fnhV2LEsxF8ZXboxpHB+MBbUAyL2DW9pAQ==" - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VkZui2WExkEfAbu3de7/zggAa5Wyir5XUstQoaO8GrGShnukjetd6CvjCb5o7wq+mWc/kw4uGn3nRfluKuM5AA==" - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Y7i2uHrd5A1AsUFJ6KCt8/XYRvO7+pKH3ZBHnrSzr6PygiV3qNkQdgNV2Ue4h6u+RFsjMC0wSHjbvocB+0WgCQ==" - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KSJ18SWtczNBGMp/R9SxEEgV31ARyExAS2NJb38H+1Duvmwfu/qZD7WAsAZ9ZBe4jBwiedqwJKunNK2G6JkyCw==" - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oHXC0EdfcNJVdY2XFrwVnKXCYj1Vi4NOaPR8/lcevTMqSgC7ul6E3OjPXmY4Vrj5r5zYM96z3vZmW7G52kiqDg==" - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "U238elVWIrK5d5Tnc30b2xeJ04owV6cYgQsJY+3dSJlbl7dgPypt9iTJ0Z39kLsue/ju92Xz8hmduhN6p/muBQ==" - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jve4riY50LyyqjWxIPP53JAq4v2OTKPCGEnu//6bjPCLIgF8mTvcJla+er1El/5saP9NK1oSC2e1uffHII/pBQ==" - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WZNaIhps5QQBE5cmEPIzdCV6/cgx4fuRvaWamOpDweHggRgiJQoFRo5oqtM7dcumkQzJYylMCs1z0iM67fqACg==" - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IZGk6XSgCVLz7+IR1WRaQxBWrXHE06BDPjPkAUqKrhc+LV5/MwRu25XDsp+rMA4QaSXJjwHokxKyL/u3nxx1CQ==" - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5V8Xj8tNYYt9hsEZzMI3rtFhI0Ksbcr2w6m3XTE6WDYy9PoMuInMIS/Qh37XC41bDrCvDVmIk9NYrMNcGBn6Bw==" - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bJZKrZ6WGEcaB5tCnPSfaMlOjWgCykIJbpXDcmB1XokR77xljGE0B81Qc65dAVuD7wmf+h28v+L9XguwqY5DDg==" - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AkJkMftEw5DPyyt5xWIoP+QJcpFBsC1tqh/H9f0pBUIcTuxOqG4RP9zLflUZyw1ODo8a11/NRYV3f8UCDhLNAg==" - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KDIhTstUBaKlORHtAZ92hwaXiqA8ft/TE9yI6QueBLn3lZ57zgzzmGckE9I94xdiXqA/bAs2zDmP2TsHUFcABA==" - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "GdZNzkrLxfeOSZNMyugXmZV8UVKztIDbUuL8aHSLJk4JdTN3FxddhKFmraBNu7n3p821XJ2FFj19CA2Mj+orDA==" - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "aPH9OMckVQ2DuGyFo912I6GhFYz8kBtTgrny8hsRVnIxO2YK8hPPCi3fbl9PRVosnyQW0LvesEM/MYM8vzl9Cg==" - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jUn1h/JuDMQLjmXvfsjyWq14+Gi96K9mv8ta5Jp7UK3kkDQQxfAQPHvZUVKThXuX9T1fu9CFYB09/KWEdpluCw==" - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9bRh0O2rVlnskHuwTLm7SHrxFnC9jXmnpJaXopzY7GUxszXTtcrt6vcsv4rnId0LamJsLwRadsWYri0rXKhUAg==" - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "mHKpMAvkbmkHAwXsguSw91aB1rcC5WyB+O15nv0HJ68ObNcyaEhCuDBoT5WIVhRqKHkCmhrDtV1NqD+HLV2NDg==" - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4jD5D1A677/ds29E6iGWLn1RBgNWETBl99BnVYgz8lDyuB6pDVTM2XL6EANTBQhhpLHVnheZVtRV6A0CbMNLAQ==" - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6omDvNAm7Qm+6++KUt0Lw4QKepGa7ldvllNMb1PHGHY0UGyHQvsO/S2nX6zINDgi8iIJzfhCYJoyg3p3outXAw==" - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "fztwZ5oLytaDQIqlvGmW3U1eZ8AqlmRaUKX3NVrFQ+UaR7lr8o67aBXvRCw8u9E6J7qYzbt/oDxvy4uh4D1JAg==" - } - ] - }, - "transactionid": "533ce70d4c98d8d3730ec8b7182ba9144bbdbc544004b0c4c33c77c8fa8a53cc", - "confirmationheight": 218043, - "confirmationtimestamp": 1564428479, - "inputs": [ - { - "parentid": "2a5823ac598549593cbf27d7e59e0fdf844b6b1481ce2a785b535ff68f732c0d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "ea69363fe8ed22e03e9e950dba30ac0e3e03011b51c3f98a31c0c56981eb046266ec1691ca75", - "value": "5480448567307230777925007695792" - }, - { - "parentid": "30580bdd6b3345ebb31fba999bf65ddd929a51a3230f534c33e1e726e2572621", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3010124410047294717953048576" - }, - { - "parentid": "f252b85c5a7fe0cdd28777fb0d6274d07526d0bc6ee4387916a65c495ed1b739", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3007027077601224950783410176" - }, - { - "parentid": "e1b10262e6047ebab374974e1ca2ac60558f2f7fb2a7e748f31610c8278f7176", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3005563491886577990154321920" - }, - { - "parentid": "69418cacec2a431b8f019ebf1c19c09d6f7849c325e9adbfca35ac997fff3737", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3003557902980846149471043584" - }, - { - "parentid": "0cf3d503353e5f09e17ad9726669255dd654071a10d27162bcced8c1df6ab9ce", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3003190490722506505929621504" - }, - { - "parentid": "923bff78f289d120ca438d4fb700393d785c2b6bbc89ed6b4b82420f619dc13b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3000969074797142870576857088" - }, - { - "parentid": "d65bc8962147108e8f1742c19d86f19670cdfcfa55156b9724afffa6cbd15cb6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3000570832619817661785702400" - }, - { - "parentid": "6c2261e05bedbb8f908908ce2a5954462c9bf2dde716d495a8b99293251ba229", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2996156019420657798491406336" - }, - { - "parentid": "669a574f2da6a2b3da3630ab80731be89c19ac1aa3fa32572ebf9011d20b20a2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2992680080586599228231385088" - }, - { - "parentid": "077796b5e39a2a1d70f59d3b0475178610a82a3df007ad0afe8d501cd7836ea3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2991659432929396831306121216" - }, - { - "parentid": "cdda7c9785667d68bdc57c7ea24a8f3a6930b9c7843af47eae9e2347ebb99e43", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2989320560988532636857139200" - }, - { - "parentid": "cf50daad468f766d81d64f4af8ff4a2ea6dd1160fcebd36c0246ab6356cc4593", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988581956732634683689402368" - }, - { - "parentid": "cccede3b91b2d9dd9e5c807535bbc45e995fe38cc1354077629356c8c8877273", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2984449777698965629932929024" - }, - { - "parentid": "6936a22419a1ffb59eb44ebb1c321521d201f0a63dad6fcea71c9930ae7b9697", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2979411061827715593200992256" - }, - { - "parentid": "9377972dd85950efc398933b91d6f3d48a08482ac1e0ce435639e18f45466ddf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2977303310649900833676722176" - }, - { - "parentid": "b6d451c7bf6c943aeae8e49262d3efc4bd0f376e350bd09aecea32f7f19e0515", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2975117164020080004676190208" - }, - { - "parentid": "ede1a48ee327c8d58251cbf455862d66da006de10aac8c835aed241386e36637", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2974059430708051823455895552" - }, - { - "parentid": "a25d2609fbc3c55d7d03ddf65b214b8b2dd211c85feb3a3bcf652f7f89e7f3ab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2973977930633314970638483456" - }, - { - "parentid": "7d3a5b565bbb9c8553e4415078c3414c590391e51ac047a2edfffefb1a9babc8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2966553881418962442286792704" - }, - { - "parentid": "a5efad8e48bc2fa9cb702366c84a52b9a9707f6ad58015e7df3de59ad65f1f1a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2963672268972514311145521152" - }, - { - "parentid": "4d648dd4b25ddd63c397c1a703ae71bdcdf4bfcc3e31e449eb6df40ae5c7f482", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2963395288249635364512202752" - }, - { - "parentid": "30efa45ae038015ce25148354af7404fb3cc2ed9bbc4a35ecd5acbfb86416035", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2959959659185056468321697792" - }, - { - "parentid": "bfba9fb8d6fd881063ec8137f08064ab35d64d2d70d6c2b13ab9120b165c9792", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2958843761423720172824297472" - }, - { - "parentid": "1b579e72cfa2715e646ba0be541295e659f59055b7885d93db43d7296b53979e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2955871131184190051057664000" - }, - { - "parentid": "7d8ec31cc4104baf29f9d78f644050b605ca03334ead82cc2d1c7e564cdd0e16", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2953011007503480576882507776" - }, - { - "parentid": "dc829e1b63adc836563e2e9befc51aacd813ed6f977af99d3838f7236bdc8929", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948138689630928711559675904" - }, - { - "parentid": "b5aafcdb93be2baffd10fb1abd5920b641884c501ffc7ac9c35099eafd6306e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948001792582063076338040832" - }, - { - "parentid": "46b17ab760248331b199f0376843271c7eb25fa7a044917eb9c575241f64b8bc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2945010672961882690447998976" - }, - { - "parentid": "967b11bc130bf6d0fd77829ae86b39355751b52fc7fa028644b8c32d9cb89d18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2944048705291189828544626688" - }, - { - "parentid": "519d4b169ccf928d43a835093ae98d91fd3faaf409782f1ebc370cb662ec7925", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2943548458414729815222386688" - }, - { - "parentid": "a3b2efbd1149a3596c8655537840aab7bb509fa7b66d9432f3c6645f4c38cd71", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2943040729511355852217384960" - }, - { - "parentid": "f72a08c69a600e54c1f7defef25581ddc61276e7c5e394e2a95d0f31f222f62e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2941558359180434828032999424" - }, - { - "parentid": "c35ae19e3b91156b2b3e292038d43858400842caa41a09a75f04d1b84bd1f974", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2941150025877846697239904256" - }, - { - "parentid": "3c7eaed804d056b63d87ed83501189bfa9167fccc6abd7c51b65cfc1eac28153", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2938711119957394269761699840" - } - ], - "outputs": [ - { - "id": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "fundtype": "siacoin output", - "maturityheight": 218043, - "walletaddress": true, - "relatedaddress": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129", - "value": "5581516802865427423962213769136" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "E6k/YvH5NGZHLchcH97JJ4WfXF/7cYIJcxkfIi5Y0eY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5581516715365427423962213769136", - "unlockhash": "7cf0f05fe83ad87c6918890fea4fd45125af63bb03ebf9962dafbaeae04da8df9927bbd3c610" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Z8L6RSv/mYhb6y2DEcOKlnB105y/2p/pC04JKKlFF1HXkRnMmlmIAZf3rmjd25/ejy3xpSYcNO8tBlQMb8aiBA==" - } - ] - }, - "transactionid": "92e90e94663bfe1f9c6d742cb6dab1cc856017db4a08c72a7e6ebc8bfcd9b9dd", - "confirmationheight": 218043, - "confirmationtimestamp": 1564428479, - "inputs": [ - { - "parentid": "b1d7ef2c8372a7134206d9783240349e75166a22286a58bb4cf3bba3587b7edd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "1092e145c6d5a6a36ec3179e26f5e7197b05b9f8abe72921dfdb798f662a102f76e35e0e8129", - "value": "5581516802865427423962213769136" - } - ], - "outputs": [ - { - "id": "14936592c833aa38abf4172ec4d1f821b025c06bcd408f5950dc655acd57c8df", - "fundtype": "siacoin output", - "maturityheight": 218043, - "walletaddress": true, - "relatedaddress": "7cf0f05fe83ad87c6918890fea4fd45125af63bb03ebf9962dafbaeae04da8df9927bbd3c610", - "value": "5581516715365427423962213769136" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218187, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "/zTVYwYehP5iIDbfl8K4L7il2F4OjnXKAi6+69dj128=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5580281561182996661933319517184", - "unlockhash": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZDpG7Lgt+LRmEQkpHLFiz9ND0RWzmDmtFRMJ7L18gcChAKa4RfioFMOv2tak/JDp0WwxYoqyg3ybUITFwhP6Bw==" - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KvAUeBa0r42GBvZQoN7bnfi8VwLCTUnYq66//y6sWe+0Y7/owkakk4Hfr3YkyfDjUhhgEfWyVu1kabDOXYK/Aw==" - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "LLayHMP4bdpO33wMoVqO0CDF30FSHkCx0WYuRkcAh7jXBqpKkwA38UKa3iI1lzIa/3o04vkXv4tCH1PGiRDRCw==" - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "beOPmvIkKXfzDR3Tb4NLwArjN1sSDo7JateyBfnSzasIBLV1g9toVkibwZ/E0Vibjs/BQof+EmZV7YDs+7pyDg==" - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zkZchxpmLyk826U5mUhQEjBj7SvJclNw8Ydq0ja7xHFG8ds6iMIqyybu2q5COk0/j9VA01SVxxq1srZpVhbFBw==" - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "yVIaLMo6uWc4F14O8M/zI1Al+7y+nRs0maGU8S6KyzkiIOXssN7YakxZwbo4j4dPRVTWC+bGO9LIydJq8R+XBA==" - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MFGh9RONGg4CLn8VTbpVVLLkW8JO8bgGirWePEemyMFk7U8UrvRzOq87qOPRHvQ9TzX5YEVpwgFT1JYQOVhiBg==" - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6M73JhuHgkWhH5zu16kKXjzgmqeS7AR5W2Tk3HrrgPAXmR8qGFObfc1+KJghcwr7It0HHY8M1/a1CDI4mq2mAA==" - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "u5nHr1uWVyi/QJxnVSYzPGVWcSqkkhtt93u38Qdh49piLJxqDTUzQS+ZIpInUfXLo6lZl/UAuPcrrsk8HBKxDQ==" - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "EBxjj9RTLlpFYY1My7VLD9MNK13wkrVui8XjVn58aMlsQc62NpSHr8G9pguRrqynWFtaQWJ5XI24ZDu5bBwNCQ==" - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "f/CZ8kyE1ohT3sUVGCf/Vb6O1zJsI1yR7g7+sglzjFn0JwUkS3mR2ZRqrec9nNE4i7nsHwSBElYjOqCMymhkAg==" - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uHo4V3fdIvc7tScXe5OSyapb6b2v4mYL5hYs2m9yReVUgWpBg3oBaw+24SaXFL096ycJ/ATPAZIOQtYZxrymAg==" - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SiNFzOP0r5M8h9nEA4LC882PTb+nbQiFQVaVkyBoelbwLqVMcFi0npEYU3b7Fcx1VZvp6GBN8ehb7RLUr4rNAQ==" - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "snXVxv56j+JjrPpGRXcOPXZkEhddty+g8X2FkwrSIW9SyTgNWAnIH1H1/Ij7MKiyWdDo6zHyUNp/qSk0UL9PDQ==" - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+qosigVUmrxg+4TYnlUHO2HjVrjxGla4oSKePVyDxj+Z0C2QruccNt0/Qp5sZqnCLW/QKOATUyOYh/2LrB7EAA==" - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "BiOL15Ghz6X50pweO5N8lk47AayNEpEv83lkp0ElNMGXtkT3G6+hiUGSf8XO0telES07q86o6zVQ+AEcYGPZAQ==" - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Tt+A4ksO46+BzEImMRarPjjE+utpa0sspw35lS/265a+8FW7RfYUbmVuWQIuh0i2eogpv3m8NZs5lDYI8/AoDg==" - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TDGOc/5rqOZf5wzj2V/d+msmHkMFGYYhNmooJroomDgUI82XXf28c0aJt9P++blfsz68U33oy9YBnksgZsw/Cw==" - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "z7LVVhCxb/7Usx7vUl0WNX9Tg1HSr6xeTmPhp0QfjmoKnDjCFb/aH4jMNxZpVOo1oqBHCMf5y9ijOPskMufoBQ==" - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "FRjfMlB83TOtz1/pPR6G+8Yy85ngwGyR0ylyvXQcg9qmjdcEIFgPHMDtroL7TL7YsJHykhwznvy4gFDJyFmQBw==" - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "b0cWT6sNz4rtCUZfZWYavbxe/33yIkHT2d+bmr9ZX/xfM61mX5T9t4qKJJJ4GWhnRq4N9f6e7EIMXhbRu+URDA==" - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tYi6W3qQPZwl6NvpwzA5HifxI56mLnxuTgecg/VuNGjlyJ61U8pXwO0VgTvKB/gbUt27j3+tY1jQtd1g++qzDA==" - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wpB51E3XPm4Gw0hYz6atmNvA+ZdmKwx6RVCScjuJxExpiCqmeQKa4v6Xv7YwMb+7OGRCpmFLPkvbtmks7YcyCQ==" - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jJm9blqctCM8Hai7eZM0zWUBFwe6NBDCv4QABIUGNt6vYxYhSbIz7mk5ti1UGOV/pf7V9pXUZ1wR1A3LWEEoDw==" - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DdJ1fftXTyfcgEW7rDHWChHaaHLIhiB0L+Nx1AFuf7NzqkDWLwLnAbsWAg9x5R3p364GSbJLxdvLIo7iZsdjBg==" - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NcidcTbEKtENJ2ZcqNhKPXsfMOaUlcBxeDjivS/CkHiG7cdaQS+aTUQS9PFvLECyMuNWVXK8Yw5PrwUc+yYrBA==" - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "n8ftfxRgMai5PGDe+gJPTc3ZThmI6TSD46/gJYKxJVndlMDvorUS4xFk0Vq5NG7o1P3aqLpE4lBWpm53kwAnAA==" - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "N6F9WQu6Hmkfy5lDf087eyTfqMzF3qZN5SHoK8pY2rsJVkMx8zC0a1O7rcI+8fVcxBuAmaluirn533vx5494Bg==" - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zTQkeueUQ/QoKKoS0rmSw1SnxVo5T6RPn9GzQ9VjUHWiHfV9EYBSXGeExbPapTObKeL6dCJ3NBm8j5a/lZ5KDQ==" - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "md8mZ/lCvWIqfk7EvlhCxiN5K7U3T3nqKNagOfBhnQCM2wtNSRGWp4ApTyRGf0bd9dw3Iv5YvQqW4+fasINgDw==" - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lA83vKwJvfsX/aj6Q4VCPF25gfnj75xRhCFYQMMawmMmDoFtksilr7Ph+/JQAJ9qpgfDPYU74+ahd+1YB9l6DA==" - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WAhs3jP9FN1i0OgjOMAXXn4GuDW69kBSnE3cYtnH5DaKzGyXcQ0s1lA0TpJm9Av4LjAwgRSbdnYLfIuz91xVDg==" - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2OoqQst+oWNxQonR4T3cYNY2X+p60FxSQ3ygPg7jVFMs4770RM1Tlyw3JjyQEi8IM6OVBGT4WRjDr5taEH4GAg==" - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZYF0JPMNde0dhILKaXUVXUdta+L4j9uCOIgH3kxUUkLtIYkXtb+dj9vgQcTVh1bhK2/NL8QKxG8RZnPgxvRuDg==" - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VYnPRsb7hswmY+FFGoXZTmQ22gAfpwMCmqH+FmkAIoax0ISxf2ay7xvHmmWtnYxF62XazFsZh4RLAVqCOd+AAA==" - } - ] - }, - "transactionid": "04cf20fa3021133b6d37327ffc3323895160e2aa227d8184b467c9e347d08b14", - "confirmationheight": 218044, - "confirmationtimestamp": 1564429190, - "inputs": [ - { - "parentid": "43330dd722883b3d8593b7815b7cbba3a7b8d0ca222b2b5f987e72eaba11f512", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "b37c8942fafb65b8b3f254f394e6618bb0ddc1158f79cd9ece2ae893322b75c036aa1a834bd9", - "value": "5481875261793448977200259920896" - }, - { - "parentid": "8852eeb771ea678044bb50b048a2db32e69de2cb7f6120779cc20615d4b275ab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2934355379656379228296839168" - }, - { - "parentid": "fe97cdef57169724bbd7fc7fb8de88f5d06ec4bd5571137807599b1aaff4dd7a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931544041206592677766758400" - }, - { - "parentid": "9306605123cfe3821b3bf2031aec688932af40830c7e3cc366eefab2fac6444f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931436701389296596835893248" - }, - { - "parentid": "b3975f72f686808b7b975903360e3c8ec4208e507dfb9d493e71da6340f8921c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931396566237752302648688640" - }, - { - "parentid": "d0bc23d287ef8f1a952fa8e98d37400b95079cbbae7668ebdcb586e2ca06ebc0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2931153111427217087006769152" - }, - { - "parentid": "779b026bce6dc271a53f10f3f7371732379c4f99650fe6c9f9818275a3c41597", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2930387591501526122492854272" - }, - { - "parentid": "88b89f8b0480c3b5709c1707e042dfa16b9a77ab4e99e3e8616dc71a80f6688b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2928869214428510736302997504" - }, - { - "parentid": "c0061ce8b87cd042d8aecce3e003186ab95fd7730a7b47212bec59f34f281674", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2927460846331478143146131456" - }, - { - "parentid": "fec95b12655081ddcd0845e4ccdfa451d08a730c9d6056147526ee358cbf99be", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2925798345542388252447604736" - }, - { - "parentid": "eb8a6a6ccead9ddefe78c0baa25058183724de14af5fdbf66beed96249dd1b01", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2916646912674579560074838016" - }, - { - "parentid": "9dafc1cbad838b2fa906c0a6d87b912c03d195fa159c129a46f9d8026aa53450", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2913440010436630305786822656" - }, - { - "parentid": "8dffd2a86bc0d8e80a2e41b5898f4aea074c5ec50be7db6d82a7445edcedfa2e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2913104205994304802574565376" - }, - { - "parentid": "a73ec9cc40bc70ba867301a1e1190d71b1b49f7a4cc6406f9082593f3056a7d5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2910710328059578321001775104" - }, - { - "parentid": "27bb3fc919a963543ce978411ab36b7205d724dc77fba70b286d1d9751dd364c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2902588514964225542846414848" - }, - { - "parentid": "59b263d668f99af0fb88221fc90f2f22b96d5bf4843c5e4e276cc3021359c733", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2901025022189439206127828992" - }, - { - "parentid": "24ca5d68cf04e5cc8df34863d0bcb94782431b3b2a085be561bbda79c7d15a4d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2900652579455621302679764992" - }, - { - "parentid": "c49fc10cca116cfd6b602b8faa3f9de687c8cdca63d53695266ca4811c1eede0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2899908120850121606530334720" - }, - { - "parentid": "ccc6ac6e3469b7e4fa70b5b532405b062c038ad0840be569841f5a3914fce51b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2898451618803285730720219136" - }, - { - "parentid": "fde7d4ac97794cbe0406f4811be5201cae75c0ed3b2544c1267d05b7a06e96ef", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2891197507302756691023495168" - }, - { - "parentid": "0567f8af5cd910da0d02ea1656398f7b765fc91d27f2030a53fbe16286ac6ee5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2888870918845773647366324224" - }, - { - "parentid": "ddae42f10d2313fe355ba05292a04ce6885d86175796b3ff041d74868663de48", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2884448429503840399088680960" - }, - { - "parentid": "71e4c693a02260d7a7e62c4915fe41dff7f730fb11385e28429eca515c4e8798", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2878595452758124178389860352" - }, - { - "parentid": "724b670591e34a39f2273f4d9ab2e1fc398e46b0ca785808ec7359dd806feed7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2877562018982354701170769920" - }, - { - "parentid": "0eb3448875fe34b3413ca3a6e04c204d59da76d898eb27eb6a8a7bb8fa061ec6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2872194534158414454842195968" - }, - { - "parentid": "8d109c141ec0013904b5b50c63f7e1ba58d0d85220615a9cfa01f00651641a3a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2871630721161776237656408064" - }, - { - "parentid": "3eec849ea0341811bde125a5308b4435e1b8e50ae5170ebe95a4b0208dc16f86", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2870153228898583727352840192" - }, - { - "parentid": "3aa5e29f711570eecd26ef4473fd436c0c2c01f16e8efc1061650b880ce85bc7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2869570993469598202385661952" - }, - { - "parentid": "474971e00e625a8f3d14893789940217dd12fa57c1ff668a15f25cf2403f5d67", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2864096948568023156966555648" - }, - { - "parentid": "23bb6a88c866c33e9651c4af1232446b10cf7c3602e72493007e1ffe012b718c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2863124555896719130809597952" - }, - { - "parentid": "f16320e7d1ebe839e4ed8d0eb3e26da50a34b10fc32b7b71955ecff23c942056", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2855881673815782789675483136" - }, - { - "parentid": "6e1ac149ae9c3433a7068a31006dd446461d8c2be9de50028af5919b27c25bbe", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2854007781432108101484412928" - }, - { - "parentid": "c657b66378abf21e256d74b51d33c6ea2c7824bd64ec93292078ad8050c6a5d6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2852411093150979570035326976" - }, - { - "parentid": "d2d33734a5af8bc953bf557ede04628ac4067e6c7e4644ce4ca23496be68213d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2842147755440230996637646848" - }, - { - "parentid": "01bd6953e19d23f27374adf7c9d1eeb9427ad1213279f44b865642b66a9a2793", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2841476665013691222887235584" - } - ], - "outputs": [ - { - "id": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "fundtype": "siacoin output", - "maturityheight": 218044, - "walletaddress": true, - "relatedaddress": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468", - "value": "5580281561182996661933319517184" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "keEkFzPfQ+OgPb4szXDT9wKLCY1t3t2QHew/u4CGvtc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5580281473682996661933319517184", - "unlockhash": "899d4d3bfff89c25eca7dca99cafa3efad8ab36a1b81569330c4a3c759f37fde0aded224bc85" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0rp3Pb37JoQrTsogJf2cC9r/5/uyfZFpinA6IMRLisK9fAWUaFooexaCmLuutpg6rPefz0cSh29PwzRiEGdgAA==" - } - ] - }, - "transactionid": "a7e67dd1255cee9c10667480b1f69a962ce48347169b6ca82b2b94eac9fc057d", - "confirmationheight": 218044, - "confirmationtimestamp": 1564429190, - "inputs": [ - { - "parentid": "d5f3ae1ba51a3ac3784e3cbab366f589226893dedaed8607f1eb5a8ec1a44f54", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "74373af8b7eabd5cff2b22aa62c30f50460e4c224e0768541a91dc4c4d6fb09ff75e1ae36468", - "value": "5580281561182996661933319517184" - } - ], - "outputs": [ - { - "id": "39c691bd3129120e7da6471d3222bcea55cd8b39ae791d6586c94f756c2931e4", - "fundtype": "siacoin output", - "maturityheight": 218044, - "walletaddress": true, - "relatedaddress": "899d4d3bfff89c25eca7dca99cafa3efad8ab36a1b81569330c4a3c759f37fde0aded224bc85", - "value": "5580281473682996661933319517184" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218188, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9/ItXrA5ijRe6wrrIJlP4wIXaJHQ77E42v7Ml6WfbuQ=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5578050616261157102733409241088", - "unlockhash": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zPzj49+6VFlw0S68bIWE7z6+K1mLlM+eTMkx/0xxeFQ8mLkZB/1gXF8j/KRLfNfylnRPun+aQt6Z5HtnVTOBCg==" - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "T44UuMlwUs5BqpK9TXRIhdhWMOOxgvc5/j/RtuP/TxwgtH/c1VRSDaM/KYlzFl6mh9+W+loRt+uN85JUXEsZCQ==" - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0IZ0q4k2suu2+AR1J3pj7a2cQr3diTVVYRxxLjnAf+LiuHVQkV7XwLKwnf6kC+IDd7Yzqh/5xB1MWCZfO9URBQ==" - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "eMoyOKU4lyAkN0n1Y8q2TIqRoXScEvp5XzwN599bSFOp6LEYuj9KMYBqVNBNtpDuq/Rhj8ngWJcxTWZCRBvSAQ==" - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/gtgA+P8NxuCt42zw8N/VDfQ6GbevIqsrjeEOxdoX+d/AH1zH+bNOiHhxtiADnkkoiAE1L/mjechCH0iiZbvDg==" - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "G9sEP4iVgW8Q4ZgZ3au156KED8QVAq3VwOobAGRRj6E28GGYNilUbQL1UPyClxmZuzU2u0O/HwvWy6cI8zWkDw==" - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pSmR7UrNmKLdcQJOkqXiX6UOXfuYc7vfE0mN7EK/jCCNkieqQtavqPjGLp0JHU5NO6WJZLzsqkRNFUEZ9eWNAA==" - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UunkbV9UTMVzK0sfCasmrahuNoFzEZXoLk2bOZwnXIn1fthgDOJqwycsdgbbW1P0xpOtdFLN/TAij8sc7D8GCQ==" - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UXnlfRafQZhOXgNKOMz38+5w0Tc6MhZcxgkXoSrrcCf2/+qwl79D41kb7eEFfxDGMbHxAWxsYwXZgJ59+79mDw==" - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "y5oTMqqmtXKDFyPBkH95YuE/T/9LzGTyUWH5o4Bw8hEpnGs8K0keVSUECvjUzJ8IhxYcBqPuSbb07nfixGCNDQ==" - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VALF6OWtxPMZpD7HMW9HjjkZ+zw109j9BuBIi+PgMAH8uWK/yOSgLGJxwVElxCtp9Vu9zW4UE/+dzDUYdV70Aw==" - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uGCWG82gZVr3QeuL6gemQ1qQpiQGzEkje8X3Hh+odc4KxrL/hrge/xecBG6KtrM+TBMJWltYa3/iEp86skC+Ag==" - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "egYS1M9rRLatpSi7KCqkLRrhJhsYl0NslKSdhQNzgKYxYn56vPF7UyQX8tVdpp0Lfjqhr3RpgXNkPilDbOesDw==" - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "baSWminoB+S0UC7p37mfV4ROYRlxTvNckvb3l4KDpWRgic331NTGhLu70KlkQHNupZ8z7rf8K7gKXGCaNZwnDQ==" - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zZWAppyZX928qkCrGM6655wYCQhMIQBBJW+YfVMcv+qSNVzAiYcv07v8LzBNACGpqXD8Cc3yK39afjR+ZNdQCA==" - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AlVRtv7qTFXHgSSyCJ4RRfunhPwJ7p8ST7Z8Dgz29FHR6P4PbG9e8xKUJpaXOBQqPhfIVbLVvLgoSx5jqf8eDA==" - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vNwO+NU8IQlavBg9pZIoX0wg03+uSvUKgDMmGfNeIcklLSWno43K5G9SEEuQRZzaNesvwl1plgBeRtO1yKo/CA==" - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "J/b/t8HQdazhyTJXjk3oHQTJZcY1hU8CEqDQfR952+bPbYbHzeBhpP0MNxKTlEJ7TW0PUcd9So9dDJrc8xZFCA==" - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IhQab6jX2oEwSdeybL7Be/C9CNbowXVJCMSLOtrwbscUtDWCmPmgPX2N1wWymioRq4pVhOkDoLE/g+JtKJxKAA==" - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pe8Pz/RObaOJBainDm3EZRfN+J/IWLNjjhe6rlPsKjUxB3ko+lcXV98ormWj7ejs07D45nTghIlV1ZXeaWqqCg==" - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1q2Btq2DPMDy17SJr4rHrr46YEp/XRaxJb/ciICqoJ1nfpLbJRbqA8Vl1V36n6H4A20aFsbJTErw+05AxsyRBw==" - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "7Mf84oW/dOHcAj+Uo9eyuSWlXCaAVTAmKQcesYNpssZ4M+qkUwsVjEaDcHyYh8+Q0WtWzjGf99HQj6zIhT+hAQ==" - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "g6ac8Ti/9Tz+1EtpYCtAdt2dVSxT+hSEilexRmTvvlpwW/iH+cO3QTnPGZSsuim1iHvTZAajiEVXX/yitiTvBw==" - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "78DRfcf3NzARfcGEcJFfsZJRajN4LbX0g//FO32O02F9+Zl5Y+Zwms35D11mBwiCOBqLFW2t2NqO5vI3FQF3Dg==" - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "IDT+zvLJPQsDvMPGUcJkrY2RA5pd6rLnL0B15CmMfCZGiRuC1Z+zDNpHuZ/ObYe24aa24XzYpjaAeOxkha1xCw==" - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Pz3CClyhEcPp98ZJuHBwiybn4vaY7pe9HPldZtjIg7jWlPG2PLTn4M6oORFd8HPZ8s6WgQx1sVRPOuRPJPrcDQ==" - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "04ExFhPNiH7rdvxFVXJdHJ5mpqjG984AT3Cuo9O2Paqn/3pQROu4qIHKeg4QNMtOm6jSDFzMHfcCLzd6cKCgCA==" - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AYPewGDuwcxDrGYLGILe5LAtH25AZ3v7a7GOOlTPu/HZIkB3/6pZsF6b5BAA0jeDrfPpGpxVRgA5P4sbA+tgBg==" - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "F/gxrLug0ytJupm5uQV1FJL4C2+OELItKLuwvD8n95wdeSXyQlw3UL3Y3ErS7xu5zK+mltB/tgattr1yYC/6AA==" - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4nzkKi9bttazjE3zZxyxpnYHphYOmh8fykodHHvFTKtK33v9KalT4GCJziC26Mvl4xglXF0UOJbG7CdYb/D/Bw==" - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "M5EIMYNXJhaalo+oAwa2VWca8JacpGkKvbmjhJPMxhrja7brgNp4JVlBgYRe/JVk2HkN9+yNlAsduqpFyTxMBQ==" - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qo2hYhSXL/XbsG0sRi+4zdLN68APsLS/kMyg4ann/a8I97VyWQMQT4xGLYlLhXZD6sg6G1dH7iUwlEXB+lhbCw==" - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "dMZG7UW8zO+WPDuMIK5vqRFxMkL0uhnMXHiIFDSrHUAJ1jZJj9qhTakuBg7116buFKznxxfMLgywOl5f/4jTBQ==" - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SCL81WsvOBapudGhiInDAiIIb9/r9cv/q5By81IoaUf3NqJz0Qr92T2qaL2hfrw+APIisn9E+uGB7s01EDGdAw==" - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Iv5JiaI9oxMtO30518ebwvWJEncQ7r5jW/YET84fNxllX7rMvhPr0x60ef1Qe0zkUzQ21FVw6fohPnpG2e68Dw==" - } - ] - }, - "transactionid": "b27486e2f803f82961b55aaf2e46ff2cd120ce1cd22a7714136fb828eb6b86ee", - "confirmationheight": 218045, - "confirmationtimestamp": 1564430372, - "inputs": [ - { - "parentid": "8d7a7c005614ba43f1e8e4c1ff0570417c20f0e4c625c260863c94b91f52be97", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "be13ad858c200310863c8f5dac10d77214daeebc1bf50f74ceb885ee1cbe99edb38f28f195a4", - "value": "5483463298544888192091770701824" - }, - { - "parentid": "ef860e608596df85362734d2d1a7785d474b784851b93dfc8ff000775ffaf0b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2840894907377376344431132672" - }, - { - "parentid": "ad838dbf7d1d4c79d5bc955592f8ed6f854ffee2e5cbf9fa41205dcb3ba2caa9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2838171531168353284714921984" - }, - { - "parentid": "94d678d57da94bf1edf3ede4656317493f930d4000227521f26528d6f8ca2140", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2830047060708953795839655936" - }, - { - "parentid": "ee84ec3b6286899811ee405fbdc20707299569ed301b4af4e3b04117157a9ae9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2829474570929867863351099392" - }, - { - "parentid": "3adb29c219be2736be2441260690289ca159ce6d9d11ca9cf2ab0bb582e9842e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2827721032402566667405623296" - }, - { - "parentid": "fae4d4059dcfe988f0835d46b2bb339be127954c4b6e93028a48c6152ce238cb", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2825684610379906261878571008" - }, - { - "parentid": "10758cd9b98915adceee8f34784c56dbdb578d2a95955358575be4616cb89b5b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2819992118756766452285440000" - }, - { - "parentid": "11e613cbe620863be6f06f64587b3db5ab2b25d216e53e0964431ade3c498740", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2810970084215873000097972224" - }, - { - "parentid": "9b2aca226178eb9bce3540325f27352c4778a9b455ea2125fc72180ab12ae591", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2809647314483902492098691072" - }, - { - "parentid": "9099ee26b6cdcb527a858747d95d1183e6835c5acb7fd06ed1384d5761d2b780", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2805990285861087047919337472" - }, - { - "parentid": "4bd8148b217403d96697b19932f7bd1c798176ea714c2da50385e6b8a1749eb2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2796379239865750792785887232" - }, - { - "parentid": "8a36149c634aed10386477014c5349652098da4ec92f6759aa0097f38fc2b8a9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2795983117285767381512093696" - }, - { - "parentid": "3a5a3d976b411eab6331ba2b7e904bad758813525c5bfa8d3bda55452e4ffe8f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2791852919944412215010918400" - }, - { - "parentid": "6c93b57c8aa2ff0e58d688f205c34276da0668abcf6c103dd9b7236623c39d78", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2783454752093443892690550784" - }, - { - "parentid": "f4c8ffb134c0a4c1a65270467fa07f777ba48ef859ff08a0c1c23e2ff8202c7f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2782911267860196643685007360" - }, - { - "parentid": "b4d935d66ff4bf7340e061af8b3202cd039cd02d43f4878b0cdafde22b350b1c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2777867698187081412807491584" - }, - { - "parentid": "8f38584405b34b6f79a24269bfddeea845d323a77e2894c9a2a055d72b44931d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2776568160888252583238434816" - }, - { - "parentid": "b401d94ee664ac9744e8dddaa9b6841e018286b08054f9807e11c1b2a2818095", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2772970868332717405789749248" - }, - { - "parentid": "13b994d09f99301035b497eee0219dff1f5e5aabf1e66d4434acde6b267dd6c7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2769597292459358756062363648" - }, - { - "parentid": "5a7e0a8a8498e045157bbbb706860a76b11a0f6ea4d32e7a43b8e5beeeaf9f62", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2766133262002843176486830080" - }, - { - "parentid": "d18fd63c2c2ef4d9b3d769c81eec94ab22b6a8894fcc9328e54e38328e3eabbf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2763522353312340551772667904" - }, - { - "parentid": "d0675197a776c18787083b7467137c583e6314dbfed196d3f12d9d479090da3a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762436110103514518327918592" - }, - { - "parentid": "a6da89c6f406583d6f706a9b3678f3d660e611eb2b57284fdb1603b00f69d6b3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2760143552510360494243053568" - }, - { - "parentid": "b59425cda6ecadb9251308733375751ddd46f4deb5d1fd83423159bb396cd5db", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2759260047314753262171717632" - }, - { - "parentid": "ae53f84c368a6edc7326c5db064f5d366c585b34f4faeaf4a6a8c49da7bf4278", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2758685955867219497702129664" - }, - { - "parentid": "8f8657b76d0653d78f1b6e5f66d03d73e4e37266a7d914276c9f84b9d5847c21", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2758293312346691239787102208" - }, - { - "parentid": "d320f05236668a788d5e4730a14b837587517bd7faf5c80f918361f1768c75c5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2756571889629406500864655360" - }, - { - "parentid": "8029000c99db993556be26c41def5b30b6025aa418309daaf877b8409dbc1d75", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2754777909852550911431278592" - }, - { - "parentid": "0cab043b7b87d32b11a895ff4c0d4890f4115cdd1edacb1f305d41e85a34338c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2752849733312172835316170752" - }, - { - "parentid": "2120f766afcc4ae288e6fd912b41a2e391ac231293fd2a8270ee35c8c8b155a9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2747930309695655554198798336" - }, - { - "parentid": "f0012c133eec8da0df04a0b0ad23a7eed2713be56fd2358de1c2fcb6eab2bd56", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2745396139161100426995040256" - }, - { - "parentid": "d93a690e1c4144f1afcd747d94e4ee351c8ba5da75278cb7501a5e5f36822371", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738780707474416633651396608" - }, - { - "parentid": "877ddfe07fa66bf4fe4c904d622d34d5d55ebf5dab4bb535fdeb54edf11abfb4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738334185833908748962234368" - }, - { - "parentid": "5985e92bc7f9e8730d93bcbeb58e12824cda590fbec1218021da6e3f7438a4d5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2738023414650341996122603520" - } - ], - "outputs": [ - { - "id": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "fundtype": "siacoin output", - "maturityheight": 218045, - "walletaddress": true, - "relatedaddress": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf", - "value": "5578050616261157102733409241088" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "YrSxsYKVaGPzFRmvsjcQGp090Km6ip3myJuksH69tlE=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5578050528761157102733409241088", - "unlockhash": "cf448448abbf96860dee310705729bfc2f3d56fcd5bb8348f1dfb351712960456c0111f15214" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xQCaZMSxcNQ71/wwsAto8BrtRzMx4DF3aBUpZqqfWsuVM84IgrIbM9CVy0JBliFDQvNHwes0FtG/1xdai+Q8Ag==" - } - ] - }, - "transactionid": "1553d12d1acda5ec05fda47936cc64a3de7877d93d4daafa5171dc9e8095f9a7", - "confirmationheight": 218045, - "confirmationtimestamp": 1564430372, - "inputs": [ - { - "parentid": "1d97b84477eaa932d1c95471a1f2f82cdd839668537c0203b6fb068fbafb619b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "1e1813b5ccd6f410e2ea2323a103c07ad0a55bf1ed532d295fc312eb31753070983c01d22ebf", - "value": "5578050616261157102733409241088" - } - ], - "outputs": [ - { - "id": "a01f419ee015afda9b1ef53fbe9aea034ea2e9cdd90922fcb6d83a12978bb521", - "fundtype": "siacoin output", - "maturityheight": 218045, - "walletaddress": true, - "relatedaddress": "cf448448abbf96860dee310705729bfc2f3d56fcd5bb8348f1dfb351712960456c0111f15214", - "value": "5578050528761157102733409241088" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218189, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "ONztGyI4X7CuDkiDJZ5+SCFZyHoLcbccOzTG1EeaZeI=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5605636945966174134918924888064", - "unlockhash": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TFguSThNV6AQjI1m8sLn2lVp23yqumOL5gAoTqIYyJdtVPPJtsES5uePShiyylzjAKkEniFQ9/3q3eqKXQn7Cg==" - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZE7/iOv7rGlv16bW2ojE5DK60h48s++N1B84yi22rN8ymJC5teq22xFTGpDOl92cCAyQkkxqzPhCQpzKk2hzBQ==" - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oE7WFIaQDtcKDE2RwLa283ydD8lfPzH92oVHsuUiZj4I5HMBy8cHs4mr3KPdo/EfvzZhdnXX2g1QkVK3mVzEAQ==" - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1LJ459VZS/6jpqUFUzQmntgTNf/0qnBupNa4/mAwzvElGCyjSca4AjNSpKY1Ia2FSL8Adnr/wGxnsPV1ikhvCw==" - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "L5OekXLXaRKOSgDtLaMKq0A48SAMoZfnKSBedG3Ip2E7QU1yIszGq5TV1cjY7zQoTvEaHvJo90q/1mvvIKkADA==" - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5OhKefLFWU2v5PsjquGA/+VW5l/Q45ncVH1pMftGX6BvVyu4CnejjZ5tZecSHgL+wU0ARvzkX6WTXMoESwFXBw==" - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "8BaRM4SHEEBqtyHj+d9W/JrHKS9LumiMV97UUN4WReVgSFiXi23nnqanpnjpo96NqWFaeqQBDJVKAuJUbGjlAg==" - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+8F7G8kCYJpRJwi9PPktHEgF1oJcGMfWlYpzJVSv2LpPuaiOP4MtkMrWnUNAIdA7xQjezBveL7fFdltaT0D3Cw==" - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "17CxkWzqXaYPKFtCYULgYnHBcKiGRM9z6cAdczgauP/V0mHQnIvZZaFiqQ3vufQwU14D3/5FkjhlCtyjAEQxCQ==" - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qLJgvyxnmV2ZHDJD+7ptuL3aYCsYLlGWAm+PUVmlnh8YJfgrNhGFN++knse69/TGgMU7l91Kvj1VZzyuTq1rAg==" - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "6rnfQuHlBADBxf1JSA482aN4Cp2PqqVxC3oRApYXVp401KcJgp0U/roeTnTgW66E4INuEUw0MZhXGjV4KHIjDg==" - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "WSQT2LIQEzrVtpMXsCMZqSZyTIk5piw3TY0rKOIx/uhHKLCxLNQYB1FZU+jpuug3xBFdcdxmu41bKQRaXotPCw==" - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "W9bG7w679GbzEMUG6PDsbHpgjnp6D3tSE96q1ohCnLXxAoESaRmPTst6roD0TDZg0d6jZAoklrqcACWWkMWuDQ==" - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9scP8LCQZrTjyHrouwTrZXqHgn1p7m1V3h3EZRcxVeOV2kS2APPZPElFahyoeURjegIfC79rS3Q0O8AUuVV/DA==" - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zLJHxD2pQRtAWydB/opWEfErCfEEzPyeAxGUD6fWWqa6oqXEFjrqtKR8fe178b+sNZ5yD2A+GCSll5IKoODHAQ==" - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "AsMbI6EKEM7K4jyVTV3TRn+Z0hlAa/c+EOnsJLLHQttF/0SmR5CgabgfshU94/PH7wYOMejD3l/VTUiABPbnBg==" - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MH2Ch0SEuaA//eJrtCvlMFto15I84p5r7rvtHbkd7J/9m72RP7gUGr9xjJIQMXPLGL4VyVEzdzooQksfINc9DA==" - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Z85V3rCrtKRNfeCYqHbg4h0PfjBWOyZzY3xfDF8BgySe26sGgpOhQrzfSGQDjM961bJUnykQDCJmeie2mfQPCg==" - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/oGCG7lXe0HaWTS3Py+Wmc76Mj1nnT019Ha8V/nXHmO/quZWjXMQ48ajk4p6E8ShiP0Q0K7nTFROMoTrF7YcAQ==" - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0FT5KJFf7WqoH9ZJ+tLiTP3EONNtsz9kf/Ic9oSAfoM4ot6wDDJBus07KxuTR3FmisGklkrrqmfuqlfH09/6Aw==" - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vBJOqT/X6FQI+YDWJz8yCj+tjg8rvtmWy9D9UGctl8/zdwLi51gShykAc7dY2vPKNkMtp2KJn2Rf2taSosnXCA==" - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KPjEQB1pIlJ53Qq7k0GlhtvcsHDW2Go9fX9xoS8zEA760VMdxdUJhn9k7uC/QHr9aOySLgAHMDllJ1HDd1ipDg==" - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+u1qBu5bJicb4F947gzPo6aA/7kM55wvlzgk4Rgc0JsemQmuBvf4s0XA+WrjgJNpsz/861+RYoOwZFQKTAMGCQ==" - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "k6sQC5Gfw3JnOdbVdEFTrm+e0mnWnmlWxBVq2jqWP96zcYLSMQXHjb6mHyIvXdfQGAUtvs2OUx7EywAT9t6ICA==" - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wg8TGQlS+FeYZzecc6wjnqMAcDExZCozTIZbXqUDMNnty6V9/4NOaPfOimA3my2HnSS1/cb1JLbtpTqqs1hCCA==" - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cJlMeACRDBsQBbCBkNmYe6tGdgODICXRS4xSymrkXCw/2CD44uriMm7KuHQm7y1+Zk5b2hyXRdX7xG9BExj9BQ==" - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "qPHnx/VkHSqpWXfYHvTfoFekDx9b90iy44zxYrOAprdV9LeeBB5qHSH3/IF87PKX6wzVgfFD8LEc/AbE8TeqCQ==" - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "p0XavBot0RbtH/tqg1NK4EMWC4dkemod1tjIDTG6o0DiIn+5q1RRat7jHAJ0kwP2ItKnfLH9gLGUBjyUunFYCg==" - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4xKIeKmqlOVtxNhI/9Tgckm64JAz4HuINQWsjLFjH1siHklOSGEqdceM2knP0TuBJNLWb1Tn8ZU86a2VXHQQCg==" - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RgcfElTFR/xyRhUUJZKdMULXDv5FR+iQzNOZbvJwLwXUcld4AR/vr1zIEs9R4NAHgnrGlBUZvRQ2sqcPx1plDA==" - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UOkvpJgVqdI3BiaBXBBOwTPff2WACOeVG6Guzj2UviSxNPOVQyBC3QARcX4M9T/J6jCQZqjuFPw1HkFWc/YpBA==" - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "EhL5Zls4uN4jmXh74Ydp9e6LdvAdQGZMWSKpFPUGU8z2Rq3LU2LnWGhARJT3uFTX3BqcjEwz+rphQLj6ObZxBg==" - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "t3tnH2X0LCJPnpi1Rr/8a0MLLaq5VsocLq8W4YmrkOH3zhlFJ8G5dV5k1U5YbHlFIj4MmHEdVl/ujDSRCptbCw==" - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OphLhI36lDd75MezajAPSVgCFB0blFjK4DauGQLZJAd2XQB7JUNPBmgvMHb9MtFB6GxbT+ClCNUd+5nfyKA8Bw==" - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "POwfCB2YW+/s9rRoOMsFVgiOSqNwvz+JQO9RLr5jerOo020ww3FJy1xkVYGDjtDuOBOCkFzOwHc0D6fgJeO4AA==" - } - ] - }, - "transactionid": "4d38c1f64a743107b3aa5e22260a1e9d972fec78870cd35510b3500c27dabc87", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "b369ef684995efb827f8b6f3a27143f09d2fbd542fd0bef0cbf7c30f6978b68c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "ba8cc4e7bd9faaab0f75c9e591bfa5f57cc6278527855930af8e2b0bf52f614bedc7744e4fe5", - "value": "5514714040928873609148906498048" - }, - { - "parentid": "ba299431152f9e04123a87977fc0cffbbffcbfce3807ae76351d446b06c3f803", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2729434491676486602015637504" - }, - { - "parentid": "bc72fc61a71e283d0f28e05e66e69379e63aa446f7562d8f37c448c406d7301c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2728583056109378385649598464" - }, - { - "parentid": "84471d6d086d2142ac7e8fc6c8a54c3341c6f208a02793587a43a51d29b1aed2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2728580946852080349104570368" - }, - { - "parentid": "92d31231de5a6b7b637c739b52cde44d43a178c6aa33ebb8a7e7f1a9095a2cdb", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2726067149260569438209441792" - }, - { - "parentid": "a1fd75b1ce1023f747cd6523bebd5fc29ee00f41ef792f152a1c93799cdab5c2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2725688443272999151857565696" - }, - { - "parentid": "0c7cf76b2775bca5ef53591f1cfc3f9a82b8f2dd974b8c325b5cd47dd177a251", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2725483459508029740726353920" - }, - { - "parentid": "f92244af5089198634cd6130f3d390de55cd9aba7c964bd904b09a04db7a86d1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2724215459135375404118835200" - }, - { - "parentid": "3e41f7d2ec5eeac4a7835086844e72147c64450287b53ebfcef68ab1f849e22d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2721210206164989948452667392" - }, - { - "parentid": "e1c736d4cdfde615dbd69303df9bd4aa841f004e1ab2c62ffae441f3b56311cd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718636551273186201287262208" - }, - { - "parentid": "d3198228dc2f12f3bb18b0edf125ffcee47a95f24954b1473b657d45f2507ebc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2711776592975734828819283968" - }, - { - "parentid": "8e2f3c535678e3f7b4659670867754cc7148eb94918af6bc83cd622f5ff7857d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2708825625783154638655062016" - }, - { - "parentid": "e4005f8170d45da757b8bf27e2d2ceda3ca21db6b87f9873a1d6400c17d902c0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2707591576202689815490068480" - }, - { - "parentid": "466e9dd927a861c6180fe5c455f4a860446fc3f48640965cbbb59bff19426716", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2706093225684536163234217984" - }, - { - "parentid": "dea26a2bd00bf4fe32fd9c03fb8987aeddc9c638e89100337029fe8fb35dbdf7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2704395115599566364120973312" - }, - { - "parentid": "0a724cf86f8b47ef00fe6c6442c43421afec7f76f6d4e69f699d68529bd94127", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2702057305410224014678294528" - }, - { - "parentid": "d7bb87080c838f81419ce839f587ada503c5c9b8a88f62c382f99a02c5002f63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2701504662093941254050021376" - }, - { - "parentid": "c8c10aac7f7a0259a0756c8a992728a17f6d4d0f7ba5b401a71c64770b8a6cb0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2687397933626297444386996224" - }, - { - "parentid": "58f1d77f46c95537c90ea6c38980362ad200e69675c15f0943ab5e8ad71bbc8e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2681561606814608124108865536" - }, - { - "parentid": "0d8d28f6d3245c0cc72aeceae7228ac25f0b054f9c8b6eea164f2cab2a979110", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2675880197610022031421603840" - }, - { - "parentid": "c92ea8b7759c3dc7f3f8a6731d2a4c6fb7a9fe3a31c98ece2c69e6fd0f7882c9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2671876516130045662802739200" - }, - { - "parentid": "9cd47b2bd58423e222bb4e9f5522bf99fca48892ce5890a876db5fcd39854d6d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2671875932752814621379788800" - }, - { - "parentid": "dd62520096e065e529dfc070d5e8988d8b25f62ad8d1794b74d0eafa20451d77", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2662463240567273380363894784" - }, - { - "parentid": "c45d4b149b30bf1f9854bd3f8369d12ac0d71a75b89575216f508c9891877612", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2658198818772696967455703040" - }, - { - "parentid": "8d4d55275835ec0ffd3314442453fa54a02602dcf008725e0cc77c859f554c76", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2657147990850512180383580160" - }, - { - "parentid": "c9800b1db4504a841045d35b4706e54e17682be4439e7c21250896800e99252c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2656571071383454658156560384" - }, - { - "parentid": "4c9166b32d3ccd3013d33abfbedcf867b9c5a18f6d4df172c51680f7e4b15d79", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2626015053031881260295782400" - }, - { - "parentid": "8c0bf9b8312bf5a284b013b215c15929c823809e48b54c10670768182cc63be7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2616233168374181146935689216" - }, - { - "parentid": "71d3127a8ab079654c0dddd808df1fb95b85e43be20f801890de76a1a1c7d668", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604748042541934141308403712" - }, - { - "parentid": "cd11e7790b4bd04fc236adcec662df597d596519043353e91d162e7441c1744d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2604263700415498799892398080" - }, - { - "parentid": "ccce8137b732ad4fb24e4b9159f08b62cfbcd0e18f0c5fb9d03494db30c2c7ae", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2601642635577872173766803456" - }, - { - "parentid": "5c6c4195b0e60ccf99bf472bdf063d4e046c1e2d764dc243f7b1ede8d7dc3c0d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2598890819719234616544985088" - }, - { - "parentid": "f5d70cf82c2e64b119b8d21df357424300b41a1ee11c836ee53761fd36e19db8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2597382610074997023446138880" - }, - { - "parentid": "1f0ed5b9020918fbfe4daa8a0aa50bf21fb8899725876d56b6e35172238d8e7c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2594138100928621956166582272" - }, - { - "parentid": "445bd5ef7b93bf9c2a4f70d5e579a0075a5dedf5262df9661d487dbf280dd1e4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2586473731125637280732020736" - } - ], - "outputs": [ - { - "id": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004", - "value": "5605636945966174134918924888064" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "F727k5yaFKRAHswky259n2foeiyHbLuXEyoGV6mu0vU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5605636858466174134918924888064", - "unlockhash": "66e9c972f5b4992d0d696fdd5f7c0c2fd8f06b4d150e6d30c85926b2a4210b1797f4e855ca3a" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SFCBaC6ARGAECjHeq5oSrZrwXMDjthsYdVfT7iENNZhGW/jYzoNif/Da2WFO9PQlB/XowuD06/wxdgtwcn6CCg==" - } - ] - }, - "transactionid": "7eed070dd71d9dc9be64ee5b1ee41a39aca34084058774330150dfb09dc82f2f", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "69b573740e8c8ccc612dfe6f3af34871c93f2b003b284b0377de0b01f5b0f408", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "084ccdc9c25a491b22812c037074ffffe06dcae942e4badc9597df8777bcc9455a90926b4004", - "value": "5605636945966174134918924888064" - } - ], - "outputs": [ - { - "id": "44054d2826ce7893eab92db04dc72ff49350ae1cf707234c3bd8ca0e278bbe80", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "66e9c972f5b4992d0d696fdd5f7c0c2fd8f06b4d150e6d30c85926b2a4210b1797f4e855ca3a", - "value": "5605636858466174134918924888064" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218190, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "gcKm+bfHk9EQVq8EWOjcbNlLfnlJYs6co2WMYRPty1I=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1145878106147029565425844224", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1102318851264528308081131520", - "unlockhash": "c509e1261a2a9540b9afa9430d3fd7e61020da05b7d2815ee9b66a436ba7fce2d717539d791e" - }, - { - "value": "1163639016221779285800386560", - "unlockhash": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2" - }, - { - "value": "1006268335106967841149763584", - "unlockhash": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207" - }, - { - "value": "2761509429844246598523027456", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1201172946981756090430521344", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1025607320120120728576212992", - "unlockhash": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c" - }, - { - "value": "1440499355176807273817178112", - "unlockhash": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb" - }, - { - "value": "1050580088557030213072355328", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "1095887561620408133749276672", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "3940173065732395494512001024", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1062752057890947849144893440", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1019130938445095933290545152", - "unlockhash": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76" - }, - { - "value": "1006583199063446242162212864", - "unlockhash": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57" - }, - { - "value": "1024031032447762262164701184", - "unlockhash": "0d71a2d2cbad15cad47b8a5c1937b2ce0985846053a4a7aae580d7c1bd8c1ed848ebc48b1ff9" - }, - { - "value": "1065813848481882414474330112", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1296348447205346970729185280", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1025583837150143513245597696", - "unlockhash": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357" - }, - { - "value": "1358563556914540918302834688", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1013921037301485903606972416", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1077281997857523665966465024", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1043243557792744676840734720", - "unlockhash": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc" - }, - { - "value": "1022312899357752468139802624", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1175737946179790031541501952", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1348385481257630250005692416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1057654383253204575825756160", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1408804516833766460019965952", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1563647742075426184136491008", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1708500185847514682028457984", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1082380796428430540331810816", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1650944352404688760197873664", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1205961469192098178174681088", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1100047127346320224016531456", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1149962400655720688093757440", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1175311493054693027249913856", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1074843838698394079067242496", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1205996599202946027691442176", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1090904970951696596035698688", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1445471823546950812951379968", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1002248846318908578423898112", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1232717017962546549522169856", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1170977953695309760166363136", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1110720319360016499859128320", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1125873414413084938530455552", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - }, - { - "value": "1019358039521587986734202880", - "unlockhash": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f" - }, - { - "value": "1031999438611480502637215744", - "unlockhash": "ec173a7917c20970fce2642782a76a6ebd10dd931856fb3bf8e45e7dee8b654c4f4c00a23b70" - }, - { - "value": "1426202656254974891987566592", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "2246723016259082233000755200", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9514901257337797689414254592", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["236400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OStfBQ0jO4BksXkMkyNaln7gipkbZsBQIuTzRDScfa0ZPK4MIuBesVxrsASbbZfFwc10gzBEjj8WxNczVD57Cg==" - } - ] - }, - "transactionid": "f62bc111212c0eecab1c1a26c8f637bdae2eb64c4d1929ec0810067f92a6ea75", - "confirmationheight": 218046, - "confirmationtimestamp": 1564431164, - "inputs": [ - { - "parentid": "455f5a31e72cfe082418fbd85b513c646fedd76616b7c9c079f8b6e476ba82ac", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "7f1e5b5750f15777df06b4b144037b9fabf7a21781bbf09c83ec1b19c0adbc68637d55121e45", - "value": "71275613973345803098850181120" - } - ], - "outputs": [ - { - "id": "3fe2bd2ec33ef5785a23aa8be7f5585e3cc3fb395e21d5abe63804d8429e4d10", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1145878106147029565425844224" - }, - { - "id": "ce3ac79b2d510b970377c7365c4625fd722c5888d069d411ae2eaf8b3e355869", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "c509e1261a2a9540b9afa9430d3fd7e61020da05b7d2815ee9b66a436ba7fce2d717539d791e", - "value": "1102318851264528308081131520" - }, - { - "id": "7e57fa647c9f194ebdb014ee3c39fb79ac23e45e41384e7ff6e65442174aaa4b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8550b414cb3ae88882a4cb2ab4435a41eb840f29914a2f98eabc5f534cef880bcfe114ac82e2", - "value": "1163639016221779285800386560" - }, - { - "id": "8ed2c0de3ef08127e70608e583eeb33b01e20d7f206858dfafcdbe54b986b88c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0cd1cd1c575ea85fb80f769d652c94030318b82d684fc4d6362376d575eedb9be709e3db0207", - "value": "1006268335106967841149763584" - }, - { - "id": "c963b1bf5c0edb7796025fde1d84b69378136b015632d749be1a608d729be278", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2761509429844246598523027456" - }, - { - "id": "80ccd3a153a38065a45e333c479ce185531e2ce0dc91dc3d07f94cdd681c1bd4", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1201172946981756090430521344" - }, - { - "id": "df082a5b9ee8d0b2c6817f620abe25142d6c088ae4efc739c94d9d210113cd06", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "967f271c3715a6a542b9351496b7a998f2c7baf753f724c248dcb85fa7d9c4411f58647f026c", - "value": "1025607320120120728576212992" - }, - { - "id": "067cb642e2655743cd0944f2c2d32c21d7e840310c9aff67af44b0d323485f8d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "af40f86a0fe3b7a4b8f357577b9f870bbba146e8ed37dd82ca8e5a4d5a765eb01d4251bb6fdb", - "value": "1440499355176807273817178112" - }, - { - "id": "898c408c5652342c4535b2b85d60939d48b03ca04041a6ae9bb5aa318a2a451d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1050580088557030213072355328" - }, - { - "id": "898be4b77dfebb647e717873b987d0f8a61ab10f71c47cb9a3b6daae828028ad", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1095887561620408133749276672" - }, - { - "id": "7576e2c95216bd0294031a5b5688494eb612441f1de810e3dde889c598adf946", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3940173065732395494512001024" - }, - { - "id": "ae94fbfbde44b98b25db1fe7e4b47ec4f6f82552ec00b95544b7579af88aa15f", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1062752057890947849144893440" - }, - { - "id": "8f226908b78f964b9e6ac99bbf92e4eae0f9b158cdd45ab2a6af327a9cf74958", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8097f638a03630c47b029b3f05f947c2626693570e9b6696a3f8d5ef478ed1d317ac27583a76", - "value": "1019130938445095933290545152" - }, - { - "id": "8cdf3ccf330c54b142a8fae682be1682816fabca73d7ed26c9f76a68e54009f6", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "622f94dbd35ef1dad262e2d2c1ba1c5453787b8915f05851604237355bcf7701be7fd6dc4b57", - "value": "1006583199063446242162212864" - }, - { - "id": "69191e848577d71a47d3cbf71cbdfae6d430165063e4b2f471e9ebe69b67a5aa", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0d71a2d2cbad15cad47b8a5c1937b2ce0985846053a4a7aae580d7c1bd8c1ed848ebc48b1ff9", - "value": "1024031032447762262164701184" - }, - { - "id": "4604a5585c960ced3bf1150997b382c1064183e2b4bbd7ffa82c8165cae5ee0b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1065813848481882414474330112" - }, - { - "id": "a6ace3dfd3aa6310b6887e579fa6d0891a1dfca8f2b951b21149a46a23fe3d06", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1296348447205346970729185280" - }, - { - "id": "de6c39246fb9a63fafbddad07a8ecb7e1a3e1dff3ec082efe18b7486f7e72b27", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "87c16a0c13a07f10149d79b57f03a8137d48b664689d5bc031a3cda50b09a605dc1ebead4357", - "value": "1025583837150143513245597696" - }, - { - "id": "973a5b5143f0a19344c1d7fdd9290f8bbf1fcb699a053873ce19a49fdca899e3", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1358563556914540918302834688" - }, - { - "id": "8d4e31f22d7b6675bf4a2d60b42ecb3750e3b0130d6a3d2ee2d7263489d8626f", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1013921037301485903606972416" - }, - { - "id": "71cdd7eea0db0aa820d9512fab8929db48e9149c1ac45b6daf0b35a74d509983", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1077281997857523665966465024" - }, - { - "id": "1c3e496da1e9829f8fe0b9a5369af04b81eda230e2e2bf8cf2a2a21ce961134c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc", - "value": "1043243557792744676840734720" - }, - { - "id": "e4db4716fadae5570e906492f2509a9ec119aac440d58105aa4a8ba47c125479", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1022312899357752468139802624" - }, - { - "id": "f784e79978856e10651366bd2a21a6fc8104bbaeda03cfdf6cfaca352c30b756", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1175737946179790031541501952" - }, - { - "id": "41926360a580b52b1501d0853ba0d0b5754d7b9025fb948d8500b9f5f700b6b3", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1348385481257630250005692416" - }, - { - "id": "91825242c3770263d43caba0bb925f0fa55ac7858dc783a84296980a6d539921", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1057654383253204575825756160" - }, - { - "id": "6fbc303bc54a92bea8c6f99a16bf2ab2390a44c43d9134d6f3b7d82228ba1a13", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1408804516833766460019965952" - }, - { - "id": "595125ca450a4a54f24c4d2898cc9cb28497bf5c5a974f7f9bc355f7d246bcf6", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1563647742075426184136491008" - }, - { - "id": "e4587a572a6fb1f87f1d8cc8d98cdd38e45e0de5062b332923f8a0728c2953eb", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1708500185847514682028457984" - }, - { - "id": "3cf65696cc96a464b888713e00c6a633141351d3ab49d9370e62ddee263754f9", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1082380796428430540331810816" - }, - { - "id": "84b25ca14328bbbdb1073503932a3162afab94c12e2c0aa48b475a6f501abb76", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1650944352404688760197873664" - }, - { - "id": "4f0b041324069ec73f9ffaecf9063c89b89b8933a226b839ca2dd19af31c815c", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1205961469192098178174681088" - }, - { - "id": "f134f85158db17decfa0c4858e73da8ee98e57ddfbfe13f3d63d191a24e68d4e", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1100047127346320224016531456" - }, - { - "id": "f4e3925d94733a05abbca4b35bc36521cf09557ca1ed1763b9961ed63c4536a5", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1149962400655720688093757440" - }, - { - "id": "6f1546ed1c35927ab330bb7194effa73e71803ba6f1196983c78add4496bf8eb", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1175311493054693027249913856" - }, - { - "id": "65d71a933995c0f2bedc9961c323a20bfd32d8c8388c5221fc77bb4f5f0e546d", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1074843838698394079067242496" - }, - { - "id": "8429ab616d154163a19c429ce4a4a9d6e385ed69e16d2aefff920a9e7e2b879b", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1205996599202946027691442176" - }, - { - "id": "06f8de2a81df4a03ad2784b7dc43489abcb3f1ccf6b336f016253826f6e832fa", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1090904970951696596035698688" - }, - { - "id": "bfa0838169d9177b1426b67e86bceea65d853b2653bec37ba246cdc9121fd428", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1445471823546950812951379968" - }, - { - "id": "a83fab911a94202b64bf415a1790dc1e4ce0f68acc64e8de3c70673b7ddb8909", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1002248846318908578423898112" - }, - { - "id": "a7f429b9bba6f44e70dd9ed9c75ccf297599c6f64092877a9f23f19c5d2d91e1", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1232717017962546549522169856" - }, - { - "id": "0d1c5034c92b80d09415bdab46857e681d55333717324aa78a87d1cacf4e5224", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1170977953695309760166363136" - }, - { - "id": "a63a6ff8752fbd49e62b37d9d3c874a7e9cb1cdbd1a818ec27c8cfbd66604bb9", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1110720319360016499859128320" - }, - { - "id": "1244454f2f0a7691c2a788b56ab3c08d061fa277834cda12217cb088db472959", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1125873414413084938530455552" - }, - { - "id": "c8fd10816ae989c81455342757f350799f720f0786838d6bdc557021f528c323", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "0d9b0f6af5d44ad70a7ab03871a024e8452bf78448e1218cd9b9c40385e5c185774e69c93a5f", - "value": "1019358039521587986734202880" - }, - { - "id": "e1ec421709fa382263d78fe85da6e8b083cbe757a1eb94136e65e4fcd3a91441", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "ec173a7917c20970fce2642782a76a6ebd10dd931856fb3bf8e45e7dee8b654c4f4c00a23b70", - "value": "1031999438611480502637215744" - }, - { - "id": "231e35c16d88fbcbb084c8c68e3f26b52063b7c41c473b21745b50902065d6a1", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1426202656254974891987566592" - }, - { - "id": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2246723016259082233000755200" - }, - { - "id": "9f1b9a29694e08b603106686756b2a69763669a8a472442ae964014dede722dd", - "fundtype": "siacoin output", - "maturityheight": 218046, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9514901257337797689414254592" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218190, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "236400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fqMzOlKjrUaRsQQG2EI3hTMye5OFdxE8ttE/WAF9atY=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622345094344692606470386855680", - "unlockhash": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OX2dnbWzVvw1PSlgM2Jyfb1l7lFbU4ZHgy1oEgGYiZ58sQEHlLdZ5AvjPqpctYwXc0h+1TcGXjCqwE8PrgiWAg==" - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "D8pwThB8N4JvRSdcWdHzSLRs16XzwU9v0385v6KdL6oPXRQs40XaEX0X7kYUTgHAK/ruPpGvc/oe2mH7/whqDg==" - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1ficdDkTGiuM+amLTA+AJ7X2oXEgAd2rzTfEgvXYM/0P9R3YXzO6JWyCwOnKIEqcugole4SMV8s+O6avWosbDA==" - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VGuTWQvnv48qACFApQbORoIefYR4ON+er7M3Klagto875in/yFCS019uoHyYFNEPYw+6Ff4VKc739XFfxRyDBA==" - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "f5y+5RkDTcq8yiwSVUIuLjot2wYOrYkvzS1JGLejOWXLGrGIwzvQ7VMH64WNvRcRQQtsyc/47CQma5d1SNkvAA==" - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "rNLFg5z0QX3kI5T90UpSkQ3I34tgiy7s+GZ0wvcBO2goviMYI0h6nMFd3n0wxYkP94P+/+GVjaKm386lA9EuCg==" - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9PT7XaFdwa+5LVfTxCZOaml0hui+k/AC7hSLw0mXNCgV/PTir28gAcgvc902QZS2B0yelqXt81b62FgRbk7AAw==" - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "re4N8meCPil7/FKjo4xRBF967C7Hpyew6Eu83mhWidk3syn/SCGn5ST3e7zMeImlLNfKytEJFSdPScXe1LOhAw==" - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "d5hfcLjsXghIhuXRyPAHiq8+bvD3Y/mDDyoQ55wy7V7lbjrb8PFic6m/HsjwjWcYJTb+SxaQlrajyd7hmRjjDA==" - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "BcT53cn4hnDGt7bWMEPyZSVgH6l0AkLZspS5ufuZJjBJcc2WWOoVHlSBZ1J/SNNWtNU9s/qgCNf2tZYNiN/ODA==" - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0sckJhAbjsxdsCjJpAufbVE8vmLhyBxBRDpZn6SjP0RnpMc+g3wUu965nqpZdEm6ooa2I7+3iTNKsmYjbIscBA==" - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uFB/ZQDNY4ykH8mbmfYmF49CNooGm2U17Iw3c6UuZN7GwmPdAGGYilkYe6PsbOkom/cku3h9EUMjW+Vu4Uz7Dg==" - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZER+XUIuDqp4vPmBXnk035vC/yHII8dfrYZtR6Ey8xDX45b6Z97ao+MXDPYWDZ08rLH6mN4fRUifwBMx8LAXBQ==" - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "E2CrvfGlJLjfMJrfTij3/c+ZPMXH8ykMatJeHOuEQnb1k7oHuMPA+gDyyS9k4FZKvY0aR5ESQwTDVW1n+Bf/Aw==" - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "0dhkgvDW9CQLG7cclSIipm5IHUz4DKOlOWtmKpve3xOhamQC0YiQJP9S1ucl1qwQ98Eqz0Yag7w+v38q4UICCQ==" - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "otdeUk6auzoCv6AVMPZRwUX9xB46h/AbD9gz9RvCDcWQ28UCxIkh0e7Ai2Jl6kKOtW83eHop+6hkDwaSoQYrBg==" - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "faLhqR98mMJNQvggGjDxz7C23WDj2zBya6Br5qISNfNIy5+S07cP2GRUrq4VKS+ydaPpyV3uuHxnlukzKsX0CA==" - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "cdoB0hajMxtrlzyAb2VOlunScpkrvGyYse0N6alcFLS8AwxH0YwCtDYQjTZZP03a6iBHCkt9fvr41QFRNsSXCg==" - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bcKC2ef7rC89q6UGs9YuZADbNLEhskD7IfdVizYISIYd8ShhsaYWfpvwGkPCXD7TQBRvqjLHcaobReazRomnCA==" - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "lIXj7ueCah5ICa6sPaGAXTj7bnNHQbJps3rw7UJjVkrNIE+GPubzE22ySRLZH7j+ZlW1drh4979LHTeKYIKBDg==" - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "RYTvQe1ozjJtbIAm1H0I85mvCokFZp/vYk3aVOHIGsaqhiJIbfWfLABSy9uSlKvLKbLQq/5uOjXI/4Sf1fvmAA==" - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "8Ags+jUB2QID4eZLmyxs4s3UHRIiFCwatcox53ctZyZ9Q0KLWdPXCih7+QjycMshDaikRxYcZcNADS3FP8nECA==" - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XwEfl7tnZNs+U0+A5cA+yGRJGFT0phJPmgl4MaVWjsGNu4HoIxkr0G2Pmy1KpwLv9ASQepGYwGgrIyiDU2H1BQ==" - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DkUj+uGo90m2dHDYqg0A5bM0otMRcpgyBSPd/cfS6U/ilXrrdrQl0aoDV0mJ7twf6j/nu4EfpVZjc1b7IdQfAA==" - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "17bN37ihWG0TcH8h7ei4Y0SGL+Fn86gVlWI1oM/1KpZo0fKINLhCbmowqH1g5ZDa4wEsC3YCo7HOmXvb7IZvBA==" - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "eqHPANLf4FrbHhBcVES8OLRJfLv1ZqQo+BZBumfgAkwJ+8uIPI4nZDW3fpDd6TR3CWeovqbYS6KvCursj0mYCA==" - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ide9DVKvU/OTIPWFAjutu+Uel/FwgjkUG8qkucApwa3BNpMRutZywm6ubtRjByFIfzVxOXuLVYmqup3K7YfnAg==" - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "OsY0uueVspkjJP7+ABSqnyjBE8rUoItHhiocn7qxy42Zis6/MRQHQCChc0/BUHed7coo228Js0O3FJDQAPNPCw==" - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2V8ha2SMwJekwIgGoc/ncpU+IYW6mNquvSv4OOghJLbKFEZvS87DsHYZwdJiHZTv5Ij6BJ4woaE7ZLh39HvzBg==" - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "88FeQHGgzHNx5WWNQe4Cj42R27d3SmH5gf+6+3HaEVeAX2kJ8pValciwlvp25A+VNJeuWqmXxfwBKX/YCNObBQ==" - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2Rn6UG2tciQQrGlrvpzp8ojuU3NsrP/JU/8nlajYeFpDUiNFqwWvb4lRJ8Jgo45eDYyTLJfupemV5ifJ1SltBg==" - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Zg3LfMv/oxNikD3Oc3j79fNciscxnZz37iN/Hk6na25zA+wek+4i3pNtjQPmjgtqCKMrVVulEIHcs3warAb5AA==" - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "1c5KsYPvORfNf885mMplfoZXYJ260LUNtEp/AuQd5PnNVl20jikv7AbnMpVQz58JbrahFgWIqSfoJqZYSpu0DA==" - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Vware9qWrsveVFPtU7uYJefDdAa7LZF3wYgZV+IW0agQMZjW4hvQDnxXRoUVz2r1yinAbXZfayxHwhfGTFvYBw==" - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3aM1SMVkTKThbmUqBJVPOexMP/GVzTIeM8eJDd/sHqXoxvfIthopX6iak6YL7eGseJ2txdaEdzVBNaH24Mv4AA==" - } - ] - }, - "transactionid": "465036cf05f2802f165b3a34c2d55cbb4db83b5c6f606829c1fcaa37c1c9b7b9", - "confirmationheight": 218047, - "confirmationtimestamp": 1564432481, - "inputs": [ - { - "parentid": "a14f2f9649de19efd054fda7bf9122e5afb45d57aef03a855b28b83d09ea9541", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "bdb1276e1500abfe93629f2210cda23e7e85d768bc7dcb1798ba2ce89353903a9c317bfc0278", - "value": "5536459615741419703439749918464" - }, - { - "parentid": "96e769a83677e4263f4e0bd372607b104c8d4493ee930467c3baba56b96ad181", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2582881369904053766934495232" - }, - { - "parentid": "cfa17915612e5b0aca0a8da09047e36a527f7d395d46562af95948904f1c7adf", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2582336124228226656325599232" - }, - { - "parentid": "c362cb8eabbe604f668fc9f2c51dd5eb87c1817f496929627d2741d9b0dced89", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2578618428506838304127188992" - }, - { - "parentid": "7178952550994923d5eedc5a63699029934f19572f5ec5e4e91c7f13169da691", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2574099091199637184135036928" - }, - { - "parentid": "1a1bbe3d6b0d48a3945517efd0e2c4ebd9de5fbbc0d8634303aae0cb4abe3ef5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2570172239128277832641282048" - }, - { - "parentid": "330f8aab36aa6cf3a34d856b0c92f83e51389865fb530ec7e0753d6b0372d9b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2568792774605059378372411392" - }, - { - "parentid": "dc27457a59ff48d734adb590cff1f8f98fada1e27827265358249ad8a8aae21d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565653792829566375570702336" - }, - { - "parentid": "4c97d97b9cc24f1c2e4cd0b3b683f10bac97976672d707f2e1baf7497d13d40e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565575982412103390584635392" - }, - { - "parentid": "9b24805669e8e1fe6387290f42aeccd1aeb3017f801536390f00c20307f939b9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2565023039430481518094450688" - }, - { - "parentid": "4a3886849cfc61bf6e7ff22a5f004d8187b2f4856cde32168fe9443a57992e59", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2554948945056981653018116096" - }, - { - "parentid": "f6c9c8035988caff9b1a474017a53bf4d222508dc8b3ae907dc6dfecbe6e9fc1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2551030716812447097282363392" - }, - { - "parentid": "b85af152cf7a7e0075eaebeda16c9a9c0b3f03649ce3732b14dc20b8f63d784a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2551002831064814067770851328" - }, - { - "parentid": "74f0bebffadd9742a3b1afe598d359572c1a5de3d063d6b1fc4fbc72753c2b15", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2541175016537308719162064896" - }, - { - "parentid": "87c038865f1137829abdb8a77616c5f0db2e6a505dbf07ba4b60d17ce8f8daf0", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2540601595575613840955539456" - }, - { - "parentid": "80cbad7f81e60e438576e5c95881e15b454697469ddcc7e6ac9f400ad292466b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2539812703783638132164919296" - }, - { - "parentid": "f20cad4e8bd05e5b4e0f3ddfa72eb0f4a63a2e50b34708deacbd3c13229922ac", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534320843099668530885296128" - }, - { - "parentid": "69992ae22e37ddbc997505c0a0d72a65b49481ab637b936b522e2ba66b1aa81a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2534142745485201871363637248" - }, - { - "parentid": "ecf18cb5f11a6763a9b05bd551fd76e5d81e6b7f184ac9834fa2c41c061b291d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2527370977241186333339156480" - }, - { - "parentid": "b08ee44df357792b1d3cde5f1a32d8aebb95d09429647004de1f17799e25daaa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2525727502887048264032452608" - }, - { - "parentid": "d58fb1a1c6f9b0c2aee01bb3ed3c7b769a22af45a5284fe0476922781889459a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2521764897879502185662775296" - }, - { - "parentid": "3c7d04143e8724c8d9db22e1fec96a97fc48e35856bf5ce1fcfb77af7e173d23", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2509725691012095758441644032" - }, - { - "parentid": "cfcd8fcea07be2e4f6403800869e2e938891a990a742d191c0b16796e50e2714", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2505048317327843513677643776" - }, - { - "parentid": "b82e2e4a74dda737c249e80a33e22daf5763e59e5c57ab7264e2efe1a9d4cca7", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2497500209049943987751747584" - }, - { - "parentid": "5bac13a2c240390471684b25f75356d34100cb3bbfab76b41f2f55ab745d2c0c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2496652016749727464401403904" - }, - { - "parentid": "4e2bb6e6e1e7df2c8a066b78350700ab4f5b9d18818654ff562d08054a3c98d9", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2490284964358610948290772992" - }, - { - "parentid": "443a3ec952a84376bc10a90b9177a22ec7e88cf01b9800fce7863033572f87bd", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488916717212349232465313792" - }, - { - "parentid": "778ef2daa92deae484fa56d68d7c99d2010a19287d03bb0072ac038de75204aa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2488212825043860596012875776" - }, - { - "parentid": "b4261ae38c5d54691690e2a5b8f280fefc88d1cacd9755648747ce55997d59f3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2485860222968549926533857280" - }, - { - "parentid": "d8b78ac82442861a0821dc1295a2fbaf56e2c166aab8cbed67dab20c6e36c75f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2484614393352784110713569280" - }, - { - "parentid": "4a7444313837892e0446e94671d82e773f96e9384b1a0f83e02371c19f5e2ec8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2477777634711049934169178112" - }, - { - "parentid": "36d3ff2fa9fc428c264d559b80b0b8d2e1c9316708648bd4fe6159580ea73be3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2477115390833416374671376384" - }, - { - "parentid": "a959cf257ea4b44cfa12d67a11ba1b65b4bcaa76c17429afe18d860ac10ff74e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2473377428282110228079575040" - }, - { - "parentid": "0bbc9e7c8ed64aa520aa2f7e44e291213af9b943f70472dc4f64fda997cebd23", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2468503420464615561126477824" - }, - { - "parentid": "172f74f64ea3306648158552f842c6bf0afaaf6fa18dca6f9bfbd2e58d79b71b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2466837754238290291878526976" - } - ], - "outputs": [ - { - "id": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "fundtype": "siacoin output", - "maturityheight": 218047, - "walletaddress": true, - "relatedaddress": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec", - "value": "5622345094344692606470386855680" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zjblctg4phFHv6Ofj91bjkch6Kp72csIhNA4e6NTXXk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622345006844692606470386855680", - "unlockhash": "4a07b81491ec450f5a5b163fea9ce2e576cdb906ec83156070e0792398fd7872732699100248" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VqpOTUrmPbQ77HWm5p590YLWlkEcaeRYIR+9UTx2jFfKgwsBBiev5eOkRLNSJKPHj5W0DAZBJNQ/vAIrpkw+CQ==" - } - ] - }, - "transactionid": "48e8aa981ebc3bf33dbb3f4dd9d7160171f2762e2da1d99514b45e69df5d53d4", - "confirmationheight": 218047, - "confirmationtimestamp": 1564432481, - "inputs": [ - { - "parentid": "16bab7da6d619f36c1b1ed8525b4e76e377651d84a749d3e3949f538e55e88db", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "f4e7a09bbed37d7bfd0d04193b58673a7af65f8f00a1c2500db285b65071593e7f4e12443cec", - "value": "5622345094344692606470386855680" - } - ], - "outputs": [ - { - "id": "948aaa5b9d887bb741026a069e49c906bc890c2523ea0e62415dc4c002aee2b7", - "fundtype": "siacoin output", - "maturityheight": 218047, - "walletaddress": true, - "relatedaddress": "4a07b81491ec450f5a5b163fea9ce2e576cdb906ec83156070e0792398fd7872732699100248", - "value": "5622345006844692606470386855680" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "RI7DiBVOqdO43eCG1AvnM6mo5CsNm0y2NfwHqqcN2PU=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622240933139506891120768385024", - "unlockhash": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "14154eDhgwRhNGqdQEu1whZ4rmSh61vlCHrOSgV3Eo8hRltWkscW/rXzyn2v4odg/P5qc0x4W3nfG022i5NMCg==" - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ialPaf/MrLNvsjIT1b/RuMZ3Bi/ZELkK3HQfFQlzG2lVf3W+6OrR5lFPA/rOFejX0DKmd6K37jV2+FWhfa40DA==" - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CIxminLOfbf4AHYAAmezlqLgGJ/3zw1VegiMzd1zEUg9qBqF8qEcrAQrokephCc+ayEUnaGyNKsavZJp7hJ/Bw==" - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HMOq1DZkqkDsdjUhJ4pcagmrRLiUy5mXnRYycuq6GpwNDrOLHBn8o6kMZoDCyrTsAsOxCd5qgj5wnLyVjJg6BQ==" - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ubuhBaTeHnfrcEchlBheAA4azrTgPyx2V3uBhRnmnQYhjhlXBcm54tL2xOkZ0L1HpgmpQ8xCtN562lqdvYA3CQ==" - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oCUXxDNLLYZkuJBQaJpAspmhBEqYPZhjZtY9DvLNiVA1ctcBbshVplqCZZB216Wv59ojfPjfTYl3RQgzMJbSCQ==" - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ntPwk4hiy32eEDttTun0/fHtmmxUY78mjn0d0uzzWNSWpLIbIajj3GWJR+2JYTEPT+SZ78nt6FLi8KnLxX8UBA==" - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "j4Ba94d6qUmfw05oICUgQ3EwbwokkWxjbNtS/BO8QIZ+dTbgNOCrZMF3FLHG9lirRIYcTqoKXiWLEO8U1puuAg==" - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9zZ38W1gNVE4eLFD3cr6RpjUBQttF3iyISeKMvC6fXkiI48YKFcpVYv3kv7paNxCFrpQtFYXA2TeHjBMDDzlBg==" - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TznSMb6NuIZ588eYGy39PwC2imdNlsjmtsNLvSwShA5IZAmRwTAgL/r+aLb44JDvxumd3x/8dhxMnrWCBrH7Bg==" - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CE/EgBh7PM3MaKiV6byGuJHgWvNOh3T09mySoseMqkfVKdUm6meWgnMJ3V5AE5UEavjgVUdlX+wPtz0PimwXCg==" - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "t11k0cV2otHgcQ34pbgpYnEU84krAQDRjyChVmRoKyQ8QkiZXjwhtmSWOkMEpL0IBiNrUqYsHOlz8e2+8AFQBQ==" - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "k/a8F6ZnQTIBJjcCVo3st417jp0ZyjakXdU88ai4f551HibWEX8bYSGQGuU1dNsso9emh18rBwqG8Q6SUhW7Bw==" - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DcOv0gdEpBgrHvL/E3l33jsk0sViPFLWpyKcz9FTVgeRlKJ8u2/hT05UpgeqrT1egJw19hMGbtaxJr1fB7+1DQ==" - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9nlbfFYS+C/FuF4JIlL1DLmA6gXo24d/gOuh8uYwTgIGxOn6bGzJouSHP1RrtvTUpEza1BhVn3FzBUGa1/luAg==" - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3HuZMfS2hHypY6OHnoTeX7Tzum+7otYmAPHPasHxRzcrA2kulJi1DITM+G53acr0VIXElRZM7fn7ZezXZD2lDA==" - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "fZtPTjrEllsV/WdfitMrtmZLvB7LUtufbYSSrEk4z6rMmbsMmJVmJg0/cxKyIZ8UD9lDRJhycwIXCvMXUxLkAw==" - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5iG31p4r/xjde6aZXUJuo5To+pa5Z2bV1kiiI7y+kPZ07jMEaWQ0T5Bd+SPCNxJbd5PqqPRQo2q0l/hIsxNwBA==" - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NbYWxNRSidAn6dBZ+zE5TftOqiCDHVOJqGqEDn9thBjf/gAfWm2mqnGHNGu8UFiEsZTTGCThXRqic8ae23UNBQ==" - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "PL+ZHxKphOXNuPjVDcTLlpQNqX4r1ap8ZTDbSfMbHaDoHDL/AAYG8L1OooqCHu2hop0qDLZwRQxA1WpwCJLkDw==" - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3BPwS185OyP6XrMUc1gO4LYXgoYSHHnQHrO23L3SpMwWyUGJNOmoDavthGiH908Gq7MYOzORlcv/wd4wHCoMCg==" - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gLddcNav7H306hl3OzDvGrh1ZmjmeaWYCQBdX2M+Ee27l428PcgKhWH4zZuvqSKI80JI8EafVttXznQrY7FiCA==" - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "kNsG5AoTD+1cpyhY9aesYPbESdig6CUPqXOdtEaq7C7zcAGVKYQ+u0zxppxQUDwgWthy7qCK3smd8Ox//2ZYDw==" - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "/oL1+o0MgypdtvXZZ1OgYmJNCOP1zrMVFD1RfFpR3jdCU5BzwelLpk9LCB3cUO1nmFNYlAC2l2Qxy5ewUqQyCQ==" - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "K5hQVmy16FEDVGOQxyVndxg4Hakr1fcmG7w9iHID03JDxmwAqjjaZhB41iDA7nrCpLMFlB1q4PnOayq5btICDw==" - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "oKJJ9+DCMfzx7/SwgBXG2O0HIw2SZM/C+Aj5a0qP7ZNNDlBoC1TgoC8jPDeg1ffr1kLGP7fnZzAPCc73g11zCA==" - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pYQJngNzduvCHH8cKpb5WGe09KkwVmohAdzqR06CJzgw358ZG7gMJqCVYscfLkb8/fcXKtLjver75LkE5drUBg==" - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QCLJ2dI0x+saLX+JHOQ7mtCW82JhRtzW0o7kGe3sWIixaP6vGJ7Di/hwNxhDm1fco3DgDsGHPe7qTnfEBuAkBQ==" - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "5jDzlrL/EvO+giqkDhcGu/uPOUeUG/56pxz46Z/hz4sqqkESWNHou5//L4S2l6s48acYH61FX2S4wHg+w4IYDg==" - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "uIn4A/eN6ryFnqlxjTMJX/8n4M161IUlYoSpR4xV3L4o63JIO9gwi+k2KW4Iexe+5TYV/IX6ZpH0wGiPwwM3Cw==" - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NGKQgusjuVknPX/FSTxLRi7ADV08JRrsNCcYZGXUnROXoDxzsteEyyMiLVYSwXL19UNlzLU/VxEJOY8b/WQMBQ==" - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "UnjrK1ui6IlyAhgw5LwxFQefrDP+G5fKtSaOuQj15lC5kL63sqQK967vL30nrjqRb9MmBDFaqOiwYWPFAr/WDA==" - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ol85tpipnsQcDZOuQFGaIPcPxSzzT21hMg0T1wDTL1ULrFA4FT8Eh6Xt6ykPnGzgoE6B83Lm54JY/o1Qw8r1CQ==" - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "PhLIe9s9r5Vo1+szURgOWUPVWpvwVmDU3MWGORI4ySXxmm6sw8fmTOC7ROfmsihb4d/0qsevVRelWuA9yADaDQ==" - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "LLZc8IBjWnK3ySol1BpG+X+aCS2BGAAxK44MzAvqsj52kAHzvX2+64o6I9p5GcQ+eAnYKS5a1k2F60xMRydYAQ==" - } - ] - }, - "transactionid": "f7eef6ac34b7bc5ae058541bcd168bf3b239ed92c57e611cf5f7c4f9ac84bbce", - "confirmationheight": 218048, - "confirmationtimestamp": 1564432941, - "inputs": [ - { - "parentid": "236c9f98c938543c7699982850ea80d090cb03217c75e510a89534ae01b8f1c1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "d41dd54ea95eae067dd7a3da3095dd0bb8d7eac8a088ca2043c9e17d86f4e072fc6ad6a729a9", - "value": "5541048324703465469338049249280" - }, - { - "parentid": "2873fe9409813f8848496eec92d3c9e46464fc9018fb7cca1b109a37ae30670a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2463018105876406900742946816" - }, - { - "parentid": "d93a168af68add3a6b88046848588bdf13e9b8f1fbe5f3c2e4d3bc5bae933974", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2460131869122318386430214144" - }, - { - "parentid": "c795c29339e92dbe5dcb29e9bd556f5042cfe113a5d669790f398b3e72be33a1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2457825540930172972481642496" - }, - { - "parentid": "4272ebf62f6edbc1c2f7a038a8e067b2cbb7cd901503d105d61d2647a4904940", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456999889881769052779577344" - }, - { - "parentid": "b78cff62dce371d504b3a1ebb9751a6ed6cd635467ee36790a82d8eab164fca3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456784073762052073892872192" - }, - { - "parentid": "f90f72fcc48b4bf59219721e42a66eb1fc771cf677018f9588c34ea81c7bb222", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2456286679331847937732902912" - }, - { - "parentid": "f7667815a144554b65e43e6fb0d7925df1616ac9a1fe3b75418fe21e1adb9de2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2451440866060532662061236224" - }, - { - "parentid": "73ea03bbe9d88113ad734938e4940036ef2c033a110127bb82742b9e74a3fd2a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2444411264452273576305754112" - }, - { - "parentid": "d16c8e39d6ca3e3085b18de8819af6418d97005824e830e365da822362a9afb8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2441471068025667376960765952" - }, - { - "parentid": "5b0d7890e306f26698445d049c7f0f9a726354e8e7ee159b6267ce276cedce63", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2435957723071406327719788544" - }, - { - "parentid": "48a38382085d665f0398cac64e532292fd8dbecd4f8889d1474e2979d7274a1b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2432601024289922826251534336" - }, - { - "parentid": "acc7f489c5c5149b91d540ecf5687f551edb98b954fd0c8440d0f7b94c4c3c2a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2428741524328892379458174976" - }, - { - "parentid": "55ca7b3dcd5f1c6a1dcd450c60e56cff320f4978941d8cd8d1ad27b03379fce3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2428556375127242121039314944" - }, - { - "parentid": "fb9a7c1fa2db1342dad09461fa61662fb66eaf850060092439cea6e5090ee2f6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2421871806966376324598333440" - }, - { - "parentid": "2eae9e1829b13cc2e710a52eac10409bf959618ec85a6215a8e9e7426a5e5c2e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2418619659658957042508365824" - }, - { - "parentid": "85a6d95ce02aef34e1700805c538040da49a1722c841724f65e169d58619b0ad", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2416043595967564376086413312" - }, - { - "parentid": "b73bf00c4a1f9a1ca6c1aa0f14d09d0ab09f879250c52b19552a903fd87bdfb3", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2402742124188604921817333760" - }, - { - "parentid": "4d37a5343eb0bbb1fdafec74728593dfd06d39d396e6a10423369eccf4e54c1c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2401888051133483926597664768" - }, - { - "parentid": "727911a0b8f65a30f1321f52fe6913ce12957a628067e1541b567e28afbcb94b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2395532066607672195970760704" - }, - { - "parentid": "b1548c3b55087f1b193a2413cbbbbb2d1158c2474e4e51e5dc8bdf2b3baad4b6", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2395098495168784465074847744" - }, - { - "parentid": "27d07d2dc01da0eac8258a0a12f8ffacc8947bda9c305b6c4b1b217f3fb76cae", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2380872942859208562449580032" - }, - { - "parentid": "bc7e21fd0e01319888d08d8a2c7479c6b468b92bc7695e57a24aa70b3293ce2d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2365944833185355028123090944" - }, - { - "parentid": "a95bb2bd2d53898e3b26f3c9daa1bca8ec7d996ad13c3f68e48d14fe643e66e8", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2355142829605431246212562944" - }, - { - "parentid": "2323f79a2150a4ddeb717de581ca7546ce091910aa3b283ccba49ff5ea15f7a5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2350453169270306465470480384" - }, - { - "parentid": "bd269dd19c20ef9001a289ea0a98bcf0b1d65ebfff5549697e31d9518dd4868e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2339952349710911757596229632" - }, - { - "parentid": "f6479f7c42d4ee2193c5f66bd61fc5c4892080e219b1d7549b7baafcf3098347", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2337915160310443317003288576" - }, - { - "parentid": "e458b203042c42e102bc92aee7d2ee0a22be7246fa7a291d9eb69f1fe548bf6c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2320521219459543541959622656" - }, - { - "parentid": "84d420d642b24582c6611696800200fafbc7756f95006719d9bb2d9de670c0e1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2312290652243490815006998528" - }, - { - "parentid": "c76b7e06f656a9eb0fada932adf08645e2dd2172ecfad8a02846678d4d745c21", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2309571643861409473534885888" - }, - { - "parentid": "cdfde9f104d38cf1bfbf1053020e859076441260bb57cb99f038fe09cb2f086b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2304601468820054213987926016" - }, - { - "parentid": "80b6b17064ed4a378481a417f70440e2aabc16bc47a44947e8eb739c8bf5597b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2296670231618115882845208576" - }, - { - "parentid": "663299bcb5b5e2aae8399a3da2ff127d24d58261130b1bd1495bd4cc11334580", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2288340320019050018468003840" - }, - { - "parentid": "b6db04aeff0f461843c9d256930b3aa91fd6d1948c710f9d314385819fbabc75", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2287289430006583496724709376" - }, - { - "parentid": "ce848358b78fc20c4ee45859e371b371f3df46d90b0792cedc429da6c3456769", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2277020381119570116826103808" - } - ], - "outputs": [ - { - "id": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "fundtype": "siacoin output", - "maturityheight": 218048, - "walletaddress": true, - "relatedaddress": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988", - "value": "5622240933139506891120768385024" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "5l4YPhqQhHkakT9WhIvFJabhIGosYl7Qx7BCQ7YJAAw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5622240845639506891120768385024", - "unlockhash": "65e818fb0e994d03f9f4dc3095e56de0a7e321dba96d16de872b6e43d28a5eba7ab13b45b05b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Xx26SDo1bkipHDKEiQ3QaNyDMSzc+dE+3/1IUwZiEp9Zr+YbBQYdCvh+GAOkXv/+VNA3YpEgZWVx7p2dDfoUDQ==" - } - ] - }, - "transactionid": "05387caed972fcf521d912feaf12681d97638aa8b60db5f5ea97ae129888bb9d", - "confirmationheight": 218048, - "confirmationtimestamp": 1564432941, - "inputs": [ - { - "parentid": "b15a8751a237f37bb8c1ad65ec838e5661b0f205fbd86424341ef5037447ff94", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "239474c449dc9d97748a6e956ce706abe414f4a994cfccf744ecc472d94a937dcf57276d6988", - "value": "5622240933139506891120768385024" - } - ], - "outputs": [ - { - "id": "fe384bae79da7534e4bd149ae8f39736fbda149691897fa94419d9bf23fc3d7c", - "fundtype": "siacoin output", - "maturityheight": 218048, - "walletaddress": true, - "relatedaddress": "65e818fb0e994d03f9f4dc3095e56de0a7e321dba96d16de872b6e43d28a5eba7ab13b45b05b", - "value": "5622240845639506891120768385024" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218192, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "rJxDRznAkp9Jy7+iW7kIRXuHrtuIP7AM83qxjLm0K6U=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1079035300876117983978848256", - "unlockhash": "58a26f3fffec925ae1132740a537d92242b9f3b76edd537bbe1b5cdc768c6afad30fe160c36c" - }, - { - "value": "1016191964993565324241534976", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1103372539376579179874877440", - "unlockhash": "173942bb6a9d3d4266a2a993e96004ef98417486fa063027f23f700ff7d7a698cb41350ab174" - }, - { - "value": "1108272010946814831366635520", - "unlockhash": "d75629c55c8b1137f60df415d7df7300372adeaf8c2d62e3553306f7e14ea5b8bcf1026286de" - }, - { - "value": "1038346462785200926729109504", - "unlockhash": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b" - }, - { - "value": "1002143994648945378082816000", - "unlockhash": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c" - }, - { - "value": "1200474348474732716901269504", - "unlockhash": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed" - }, - { - "value": "1713517360180298961077141504", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1326114229543935152846536704", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2669560964409263678453448704", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1188428277122233816043585536", - "unlockhash": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace" - }, - { - "value": "1074987115184920449237254144", - "unlockhash": "7836dbdcd27da2860ce569c81c892f354a603a7f9d2de65742752ee71fc0b5b774d11f8bc322" - }, - { - "value": "1053143202223226328791384064", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1020028091083164799069847552", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "3873166246890229414462750720", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1048249571512618904671420416", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1043766710436091721553920000", - "unlockhash": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79" - }, - { - "value": "1147411034223376309437071360", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1029196904608983755042701312", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1005957281126707622662701056", - "unlockhash": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769" - }, - { - "value": "1115710710891716086813687808", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1050697553538554090708221952", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1193149355939062831771680768", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1015508183934852754669568000", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1285002620687451980870713344", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1089345615825374538493853696", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1023423253632504414491672576", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1011693128226304868345577472", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1079257538895527695462367232", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1226297734608190246578290688", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1170455178099859137210351616", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1056564891944971124722368512", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1109627154036414697510535168", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1038142194014786908519858176", - "unlockhash": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79" - }, - { - "value": "1919926009330604769097547776", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055421826407638391714742272", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1179951742922731665899716608", - "unlockhash": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca" - }, - { - "value": "1099292109648460276519141376", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1051337473668156425557114880", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1042374159543020833489731584", - "unlockhash": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e" - }, - { - "value": "2198199701266604465842028544", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9308152535232937443236773888", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["211200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SdDetoZh7jbCCsOa34JN2UMp1T2VY58z+b0wMY5nFeRecdXh79J3mY1RFfWH44MucSaG62mV/mG0oG4dGKdcCg==" - } - ] - }, - "transactionid": "0059bccad215beea61bbdd5797a42464dc1b2ee28ba0703bc36679dc7e2e9425", - "confirmationheight": 218052, - "confirmationtimestamp": 1564434781, - "inputs": [ - { - "parentid": "6de996cf8f80ea9a3b0fe304c4bf465a862dbd6b40976beff88a2bf78604eacc", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1b3368abfc15aa98e3036221c6ef4cddb37098318df5197b85f7f89b8923ad08de176a87a2f3", - "value": "61061105482942732902050398208" - } - ], - "outputs": [ - { - "id": "d23112a7770ef414b267d967156dbebf0295bc8e9af7139b355c69625b8c6b1a", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "58a26f3fffec925ae1132740a537d92242b9f3b76edd537bbe1b5cdc768c6afad30fe160c36c", - "value": "1079035300876117983978848256" - }, - { - "id": "91195c2b9ac83377fea65f29c994788d29e6b869d1caae815dfbac17ad230755", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1016191964993565324241534976" - }, - { - "id": "eaca3ce1c507bdcd7baf0a02e4f18d9d0ae7b09943497045b2b7b72d724ea1a9", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "173942bb6a9d3d4266a2a993e96004ef98417486fa063027f23f700ff7d7a698cb41350ab174", - "value": "1103372539376579179874877440" - }, - { - "id": "dab70b6d5a2b9feb103df8b741f2044552a0d713bdebe0f3a306d179bb046ffa", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d75629c55c8b1137f60df415d7df7300372adeaf8c2d62e3553306f7e14ea5b8bcf1026286de", - "value": "1108272010946814831366635520" - }, - { - "id": "3af10eff13388b4488d9e6ab9e9bd6d233163197b9a1a5132e5844753aa6a739", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b", - "value": "1038346462785200926729109504" - }, - { - "id": "bc025cae9814fc121d2f2ec75d367f2cf85f4bf06bd4241191f38ea8b8f42b0a", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c", - "value": "1002143994648945378082816000" - }, - { - "id": "a28beed88c78cae442bf095e6d2b01d3a7f624b4eabe193a855b3ddaf9c25252", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ff907404e0824dad78752d031e567681c40ef707bf5f9d8c4dc58db70ebaaf5e2cf762c15fed", - "value": "1200474348474732716901269504" - }, - { - "id": "515f24a5d8628f18c6f7acfceed309f1973c2e31f4e83ebb3790bd41e9df0dd2", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1713517360180298961077141504" - }, - { - "id": "db19cdb706dae427cf6daa34769cdda995635ffe2881a42c210e1843c42d7fe3", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1326114229543935152846536704" - }, - { - "id": "01a81b83ff37b252f6a870a303f0944b59a1630c51772ee9748d09811adae4e4", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2669560964409263678453448704" - }, - { - "id": "0bf274eeb74a59389b614329b06fb36bb7d1045bddc7755fbbf1210dbf955ca7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1eb21089028d0b4bcd0d693357c9c2a7b8c3a170456f96e170d8c6142ff502be92f66d81eace", - "value": "1188428277122233816043585536" - }, - { - "id": "22edb9ed40ca1258d921d992f867893449e4a651732098beb297bdc359587cc1", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "7836dbdcd27da2860ce569c81c892f354a603a7f9d2de65742752ee71fc0b5b774d11f8bc322", - "value": "1074987115184920449237254144" - }, - { - "id": "c004954c0df1e003074f94e7ffbed20bc17466b64d7a2a77a8c93cd59f79e48f", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1053143202223226328791384064" - }, - { - "id": "e7b1be691aab08878acc25ab4ef37c5a3dbbffa1a93aa84a266ee47951b8c4f7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1020028091083164799069847552" - }, - { - "id": "860a9670c642011968062b8d928a552f3784d7f8fe2b45333fcc21dbc0ff9b16", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3873166246890229414462750720" - }, - { - "id": "39e3321c00ad910dc6ad9a029c6243b96b26a8aa6e87e8fdcbb1341afc10e944", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1048249571512618904671420416" - }, - { - "id": "a9af5f09e12ab99c6ced908cf2c6def9b5f719091b16224f18b1b8edbcc3d119", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79", - "value": "1043766710436091721553920000" - }, - { - "id": "ccc9d37ebbeb8b98a213e192701915b80904ea5347340af3b0727a85d1643d81", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1147411034223376309437071360" - }, - { - "id": "d20abedd1b6d9dc92f9c0431143a9f607a2d77beee54c9dbae5effedc014ab96", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1029196904608983755042701312" - }, - { - "id": "31166a47f3a8e15a360cb9a4314b507265262cbfda247cfb190d94122d14e17b", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769", - "value": "1005957281126707622662701056" - }, - { - "id": "785a0bdca4575054e20f2656b55d3040b505146ecfdd46018c791e5a94ec3a33", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1115710710891716086813687808" - }, - { - "id": "35aecb549221be5971396916201067c493a5ea1d3a498a096681ee8e9b10843d", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1050697553538554090708221952" - }, - { - "id": "869390112af273863c13f79a23a41ad8fb290746f2b11c0f758e4470a5a73a02", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1193149355939062831771680768" - }, - { - "id": "f11cb05e9f1d6192eeb9930cab4e7191ad17d930742c7484a1f33dfe4f39c6ce", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1015508183934852754669568000" - }, - { - "id": "6c15995c8ac7ee0b1dd4b1f3c94380876341c68f54026eacb143f0a8019c291f", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1285002620687451980870713344" - }, - { - "id": "47fac2595da4c76b7ee0b726089a4104dcf08310ca2d65af8770b0a85c6ae268", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1089345615825374538493853696" - }, - { - "id": "54069869c8b50f316ef45973b259f40d9e1f118f5d872bdb33b9f7ac94fa1c73", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1023423253632504414491672576" - }, - { - "id": "0353ec73a36f39722e2e8d980e19a9fa754b35c3b8448dba0c1ee8917d4bf018", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1011693128226304868345577472" - }, - { - "id": "cd3ab55418d48d2372288ad5ad9f881d99552ea265fc2f3f733c297bb482c3ec", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1079257538895527695462367232" - }, - { - "id": "ed9f018d0bfa1860cb8419e4f4f745fa306e5be241656b0e71782995855f957c", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1226297734608190246578290688" - }, - { - "id": "57e868a08e5f81dbd6d55b6304282b38b467e61562eb6d02389c2c9b2a1f94a7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170455178099859137210351616" - }, - { - "id": "22e88d6ec7f555d7857e8f5a2ec9c3cd3740a133ccf75c6ee1a84de828eb2a01", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1056564891944971124722368512" - }, - { - "id": "017498973152ff1617f7a145c5eb24d8bbec3d1ce24df4f17738c581b0a5c2e0", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1109627154036414697510535168" - }, - { - "id": "c9afac808b44cedd08a8f81949f3698071fc7d7c81dc4599c2e129f6fe4b31cb", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79", - "value": "1038142194014786908519858176" - }, - { - "id": "fce68f89b1f3223c585bccd8b7e54e72b10107a6cc5f9a8bef050c7b44e090d0", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1919926009330604769097547776" - }, - { - "id": "a46dc55702c44511bc992ed5b8de7808162139faf27c2a1e0eaa6b0c4d475346", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055421826407638391714742272" - }, - { - "id": "7871a6a7fabb0d8b460e24844d6614cae342515efb1eadaed483786606202a5d", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "f2c1d3b5ddcab4f11aa649cf25e5ab80c2c10884ec558c8bd2a6c68d94ddd45733b077b801ca", - "value": "1179951742922731665899716608" - }, - { - "id": "36967df6e63ad740f7889ea05c3c54090430af233cfdcce13aca3a2d63c32b24", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1099292109648460276519141376" - }, - { - "id": "b2fb30a4053e59923b88ee5d365e4fe290830008740b7d9264f3854173f35da7", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1051337473668156425557114880" - }, - { - "id": "18f17d24cddc3e2ef1ef3e45251912326f20b1c9a5c3296da2b53b98fd05bc4b", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "08e07afb03696460652673c6193b3c16bd3eccfc5a397561f3b9c420681f5e5de4d99fdfd34e", - "value": "1042374159543020833489731584" - }, - { - "id": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2198199701266604465842028544" - }, - { - "id": "f6b8c4899ee8fa3138fd3820e74f73e95f4885c4891bac444ae0cc0ff056927e", - "fundtype": "siacoin output", - "maturityheight": 218052, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9308152535232937443236773888" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218196, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "211200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "DCQR5T2TD5GntluIaC4fwRlddjCeIB6keuyEIho/JQo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1004652616515306924692668416", - "unlockhash": "1cc4728271478f901653b222d0c9549c944b04d29f106d3f9022593f4474d57e7db306924a26" - }, - { - "value": "3904928853947843943013023744", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1007157018162016372773617664", - "unlockhash": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0" - }, - { - "value": "1079462453795605437382393856", - "unlockhash": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f" - }, - { - "value": "1147999849784292025609748480", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1002579153540183311060631552", - "unlockhash": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce" - }, - { - "value": "1029525523166248777087074304", - "unlockhash": "820c75b935016bbe4757cd28caa42a3542b85f8200208d19db3183487cc508ac1e9e94b0d906" - }, - { - "value": "1136760663153814045382410240", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1102922521961859860574240768", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1106973166495945839933390848", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1048815677549135850476208128", - "unlockhash": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218" - }, - { - "value": "1045653087514220390523142144", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1253681783482268105807233024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1159527914971707870283431936", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1379465595848468339510738944", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1551986604239260662779346944", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1682235653997865363769917440", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1016360272493485464994021376", - "unlockhash": "602131b3744954003a60683dd52b3f3d3e61b7cf450133a95516cec6243a04339275409b8352" - }, - { - "value": "1600958014176205145408274432", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1149854082568058040790024192", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1211872021298542306277326848", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1014563290187777812624113664", - "unlockhash": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d" - }, - { - "value": "1412180928207083839743328256", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1166420782857399184472932352", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1197852344734422241529298944", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1084938703329824296541618176", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1001902682790027202337243136", - "unlockhash": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4" - }, - { - "value": "1046808378381697615771467776", - "unlockhash": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d" - }, - { - "value": "1094059480689370992298688512", - "unlockhash": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241" - }, - { - "value": "1421882567738447462159876096", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - }, - { - "value": "1142248104614465989917147136", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - }, - { - "value": "2176419340325755875384885248", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "9114039866322875378552537088", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1027057623193695372122259456", - "unlockhash": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7" - }, - { - "value": "1289529339785346916903026688", - "unlockhash": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["186000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pDiR2nBv6BmcCDORNBqLoxtg2eYdMrHDnTGbMax6XJObi30suwq74vQUbds95COSkWPl3kxlsQDZdv2zYOWUCQ==" - } - ] - }, - "transactionid": "c60bf7cc0773b1d6f3ce9adf014f0cc8b272aa994780da8a5150b63099ee30e1", - "confirmationheight": 218058, - "confirmationtimestamp": 1564441136, - "inputs": [ - { - "parentid": "66adc56810f05673f6705339aae7155b4063d82edcd88e08f7813d3282ef791f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "bbf6e30f022b3b2ed47442853e249410256e0102178eba0e410776f9fa8706d57dbafd854508", - "value": "52813461961820524258487287808" - } - ], - "outputs": [ - { - "id": "221da126c70332f06e36e4c5d215dfb218367886750dea16980fe96853cf7e6c", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "1cc4728271478f901653b222d0c9549c944b04d29f106d3f9022593f4474d57e7db306924a26", - "value": "1004652616515306924692668416" - }, - { - "id": "9d4a0f3b5dd3a3ea3f2a23afd65890c9bf5f905e2094627dd85913658158e9c1", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3904928853947843943013023744" - }, - { - "id": "25e676b559dd9ba1004c2f9810a9e344329ffab21435e078745026cb99129fdc", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "191f825fb670b140aed486dd00d0b33953874d32313f8e503ae95acd4f7e3ee4752061cca1c0", - "value": "1007157018162016372773617664" - }, - { - "id": "5fc18d67bfe7c3af488d7440b8a0c41ea28cb32d79f63b164c3d1520dbe2becb", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "584976fa3a810ac150d987f7d9cf92fb3d32fc10f686ecad70c4731617700b983ff258906f4f", - "value": "1079462453795605437382393856" - }, - { - "id": "87820c1a91124023787b7e3f3ebac2428811688c1aa77dd7a5316799f31845f5", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1147999849784292025609748480" - }, - { - "id": "df40faf4d0096c36725af794b1db544ed93daca1e77fa537b4a6bb208de891a9", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "82dbf47d9ecf4b24780ad70649b9a08885aee87c848226980ca35af5d92c1a94fe7f73a554ce", - "value": "1002579153540183311060631552" - }, - { - "id": "77dcab58aa25ce7ed4de96b18a442b5e6ddd4b53fb38a3249be2c73e1086462a", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "820c75b935016bbe4757cd28caa42a3542b85f8200208d19db3183487cc508ac1e9e94b0d906", - "value": "1029525523166248777087074304" - }, - { - "id": "31947d0916da5098b06d0780a920fb62baa90cf020c3a3f492165b1280a5bcf7", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1136760663153814045382410240" - }, - { - "id": "a355ac596c3ab36978acb7fa4b16c2da316e1f5fd672aac1cc59befd581b8c66", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1102922521961859860574240768" - }, - { - "id": "7d7e6b5860b2cb02ea983dee0317e4cf1d9a9cec3b13df755a035fe0638faf70", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1106973166495945839933390848" - }, - { - "id": "a92aea72137c2637499886fa2f413b92a296804b8525e291e40a9070f406e3a0", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "84e3c7b231d85aee6de3be26834d7a4a15cee2b9315d02b3f79d3bed5c4e636b5ebb7f12b218", - "value": "1048815677549135850476208128" - }, - { - "id": "8566c8244aa50031af5658b3ecb31e0a05147f129e63811be4ebb80934e24c50", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1045653087514220390523142144" - }, - { - "id": "38e50b250b4e403e36bfa5b8b3d23da93e7fbfb1677a9e4708b14f5b48cd576a", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1253681783482268105807233024" - }, - { - "id": "5b00663ca6d407cea15830443ef4d1093935e0e2d032071871599b689e1d195c", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1159527914971707870283431936" - }, - { - "id": "8c6584b410d6c51556b5591bd20a95b873250c7e465a89c44ca2c91201020587", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1379465595848468339510738944" - }, - { - "id": "13baaeb6cdfe80817b48cdd9a805392812c5ceac4b7fcbc33e664ffbcae0ff4f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1551986604239260662779346944" - }, - { - "id": "a2f66309d9be03077c8a1e8b4fe234801bd0f42405114eb007c9706f8cba707d", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1682235653997865363769917440" - }, - { - "id": "da18999fb8ace361b044cf074f2cdba4c2e8952141cae3530948b27524d08b08", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "602131b3744954003a60683dd52b3f3d3e61b7cf450133a95516cec6243a04339275409b8352", - "value": "1016360272493485464994021376" - }, - { - "id": "6814acb52702723b9e569314abf99198611a782539738ebdc9e7989b8ff7f257", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1600958014176205145408274432" - }, - { - "id": "35552360e9722525ea516b1de05c45d696f9d574c3a600b9f467ed35200b4ee2", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1149854082568058040790024192" - }, - { - "id": "e5e2af77b3146623bc8746d16c6bdc46fb0247dd0119930eb19c41f74c9384da", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1211872021298542306277326848" - }, - { - "id": "31589db2022f6d3a7945a98b1ed3613da4ee7e80b094c5b11ae0e70a6a1a33aa", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "8490123e54c3b9a8f794c1b51397f2b41dd1aec9f95b1cdb7c96b1d86e62e0cda2fa1cf37f0d", - "value": "1014563290187777812624113664" - }, - { - "id": "8c191cad3f121cae1eb84471227e4ccba15c6a4eb66ba6789f9bd7e12cdb7253", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1412180928207083839743328256" - }, - { - "id": "e5c304469a65e398cc548156f0f57a737f630ab72c4ef9fc143833ec1189bb0f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1166420782857399184472932352" - }, - { - "id": "9def949548f3f3f606205142deb60a6ad77d7a054086c3a3deb04bd18bca864e", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1197852344734422241529298944" - }, - { - "id": "f42915f92173abcc4e29b5e7c6c91a4205d79eceefac16cd2c92219c81d54499", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1084938703329824296541618176" - }, - { - "id": "e9ce41654293672ce22da319235de30943930abb861bb61616b2a164afe58f2f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "fb48014da4933b5ae28585783aa91fe109401bcc3224a0a4fbe5d78f36793a1027c3cac9e4f4", - "value": "1001902682790027202337243136" - }, - { - "id": "67b38ed362c23f2a2134969adc4353cbfcac8206ca15b671e7869a1e356efc48", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "55191ab7adb7cee98f03a3e6596888c7f75faed309ccfef5585b8f2258ebbebfef13cebc656d", - "value": "1046808378381697615771467776" - }, - { - "id": "31534c3367fc9c8c15e3ce8a1ea92ad8ff383479b527279e805601272d23afc7", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "a347963dc40cb6beeaa6b599cd73f51251934c386f482e3bd7499f1b109a12d141fd23c7b241", - "value": "1094059480689370992298688512" - }, - { - "id": "80c49e15a606255fa2880d79247ac7bcb58a179e7f35dd1d99cdd616a987385f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1421882567738447462159876096" - }, - { - "id": "3b6f8ef86b6973fa7c7c0b93abf29ba0d835321ba888ff247d2f047a2b801742", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1142248104614465989917147136" - }, - { - "id": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176419340325755875384885248" - }, - { - "id": "5866a78011d97269571142374c695154ed6740703d5ec15be5c3781138cb51db", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9114039866322875378552537088" - }, - { - "id": "c9b5112641d47e44d1eee11625a77d390830c3669b61f8ebeec31c2d962589b3", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "10e226de9b8bb9044bc7f08836718ba4a2d2f9eb6a24a5eceb62631ba4bc2300dad7c69b83f7", - "value": "1027057623193695372122259456" - }, - { - "id": "affaf840751657793e7148f1947c0d714073efb7be2ae2e2bd54d9d7106e1f8f", - "fundtype": "siacoin output", - "maturityheight": 218058, - "walletaddress": false, - "relatedaddress": "3d92c33afe6aadfaba660c30a60ac3592c128278c53dad279d447e6eb95f722dcb7f5f4dce6f", - "value": "1289529339785346916903026688" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218202, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "186000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "9ha7XH93W0GYZ8lQF06o6liFwlRZyckUrPuMfIZlhgs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "2211550908392094885149147136", - "unlockhash": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b" - }, - { - "value": "1099469281563590914612494336", - "unlockhash": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02" - }, - { - "value": "1049983046166954282914414592", - "unlockhash": "2a6f37165b3ba7acf17cdd7c558865f5f247ad8935a33e66988b52a21ce1c7cdd8a42c122f59" - }, - { - "value": "1012951460476384674906767360", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "2829537107226509714007261184", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1126432968139758653524672512", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "1002010704117416154508132352", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "3316472088970518567522926592", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1074939377262532085016821760", - "unlockhash": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d" - }, - { - "value": "17584799560775305206901506048", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1063549033743157863745847296", - "unlockhash": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b" - }, - { - "value": "1035695264149104748315279360", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "4942313269097631938705883136", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "2005104384923285024886751232", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1003991626554240498189205504", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1535636398657168605548904448", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "1358825583469361581437222912", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1194990885162316987641102336", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "1140898397641053200611803136", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "2124561706197486881789181952", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1099462776226511837588815872", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - }, - { - "value": "1043686610954443599316353024", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "1059830480173777119180095488", - "unlockhash": "79fff10de35f8b6c4bf6fa070394d343d068ed981cb46cfaba2f58c142b3f4e32665231fbff8" - }, - { - "value": "1156858503397706392027529216", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1030893999760679894087892992", - "unlockhash": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f" - }, - { - "value": "2035455527644517280302235648", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1176744521711636952091459584", - "unlockhash": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7" - }, - { - "value": "1251762705584264386104262656", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1490534178378959212568903680", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1258712968142735084686934016", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "3930639867076024022062858240", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1048525126662102050412167168", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "1037111641924884908843925504", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "11545271227848219118433992704", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1082495782912668987177697280", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1678978449259050455328096256", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "1265636256215064086744924160", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1815130067622046062583218176", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "1030726280823828242350604288", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1794947902488516016486744064", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "1039224396462724591356477440", - "unlockhash": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87" - }, - { - "value": "1213031620318817442640691200", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1085253226789743348045840384", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1124725525300602041911476224", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1027152879726453692866232320", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "2420126169146622647147167744", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1070586217583196439542956032", - "unlockhash": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d" - }, - { - "value": "4211334114584715294664556544", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1046919301817881031601127424", - "unlockhash": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3" - }, - { - "value": "1049097172772261592294391808", - "unlockhash": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pnrOv7B2wdykCcm+SrH0MLqCuOcUS2YZbt3iRl6zoNSZhOBWTuDY7UIe/Nz1QEWJSqVhxIuaFTx2MdJmnp6GDg==" - } - ] - }, - "transactionid": "63ff76ee93d7dcbd95e85af23a4bd9e400c60e11daada151dd7f0c0c4e526ba8", - "confirmationheight": 218059, - "confirmationtimestamp": 1564442095, - "inputs": [ - { - "parentid": "ef7eb122f035b63dd9a306ee8bd75e48f453ffa4c6e61242f6ab5c413819e93b", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "401a01089e44b0b8f6f5b3a650313b0e2cc830ba1dfbf133207fe9cf8c76cab442ae165eaa22", - "value": "103834808551996526300384952320" - } - ], - "outputs": [ - { - "id": "b7cc5c0f5b65443c6d143dfd87c3d165c6258924a844c85eb0f4d700e5f35f3b", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b", - "value": "2211550908392094885149147136" - }, - { - "id": "44555635f5e528edf762b2cd7425f83b9a586a087fadeab56edb9290adf00a6a", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "b381931e8a38497d443143fbd237b425e9be5408c94b3ddf600498bcf76e89e6c94a89fc6d02", - "value": "1099469281563590914612494336" - }, - { - "id": "7457dbe932022e32f5911a751b791f0662c754dd9c2da36418101e110194b387", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2a6f37165b3ba7acf17cdd7c558865f5f247ad8935a33e66988b52a21ce1c7cdd8a42c122f59", - "value": "1049983046166954282914414592" - }, - { - "id": "cbcabcf0f5f569d4fbcdb36a3716fdcc3a69b7619684743ab2c2f4d8de08b638", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1012951460476384674906767360" - }, - { - "id": "75d5dfe6d60163a3e2433de8724a6e8b61bf6ced76fc6b339c86f2bace0917f2", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2829537107226509714007261184" - }, - { - "id": "1be6812de4b28c59ae8ac51cc7f4dd4318282384bfddd4bcd14d1821efe6150c", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1126432968139758653524672512" - }, - { - "id": "2fd13ec132fd0e865faa013857f1c04ae8726b088cee5c826ef883746fb3b6e2", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1002010704117416154508132352" - }, - { - "id": "8a4ca10eed85bca1326ef5c077ec0774cd38932961700e5310b4cda4db66ed7e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3316472088970518567522926592" - }, - { - "id": "d1e6b34e2eb7ad37509f224a54e6e473c987746142b69a8dbf82c223e7b9c995", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d", - "value": "1074939377262532085016821760" - }, - { - "id": "ba179e1c933d8b020a348422fbd2c8e4f954f19302fc9e3517a77a810d1901c1", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17584799560775305206901506048" - }, - { - "id": "423cb85d18261249f17c7262bdbf85bb318d5143f453833282de1969bb9a01fd", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b", - "value": "1063549033743157863745847296" - }, - { - "id": "594e1aaabde1065e0a50937fbd01ad94a510f1ea6df4a2a6aafeb4551cdb3bdc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1035695264149104748315279360" - }, - { - "id": "8f9db838d87e5bb5c45d37f307a8c3e030218dbe3dcc86fdd842849ae9559fe8", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4942313269097631938705883136" - }, - { - "id": "9a86e1d64b9f8ad805056916a8caa634e760fd3bca0630f6e3c45960f81bde8a", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "2005104384923285024886751232" - }, - { - "id": "cbfc096a419be32e24a5ade2c11e915d6bd4864de8a141dd8ddba18e03177ce3", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1003991626554240498189205504" - }, - { - "id": "a3d4dac2425f6292ecb87b18d4edc008b66b4623bcd36799666558f916c535d7", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1535636398657168605548904448" - }, - { - "id": "9a304ab95875a630180f22714506877cd0b0b9e69eee6816828bfbe5483f7e22", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1358825583469361581437222912" - }, - { - "id": "3b0e6bc15bd7b3094930be8761f07eb8fee7a691b74764fdc5065da64f54e30f", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1194990885162316987641102336" - }, - { - "id": "8fb45a9bb2f1c84630ad5dd1737163ad208ef5f139505527a67a49f2862432b4", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1140898397641053200611803136" - }, - { - "id": "3f48873be1ecde469fcfc184c0318c6a34a64437692d4b2885dcad081fc45e03", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2124561706197486881789181952" - }, - { - "id": "b4860b3b71da4d2eced5315ce231f1e681d45bd6f128124242d3612e1e3bd763", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1099462776226511837588815872" - }, - { - "id": "88bda027faf6346c0f45ced591e05a465248d56ccc1926231f88de5e3d4be2f1", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1043686610954443599316353024" - }, - { - "id": "00b4d2cbfec555af42ec028d493c9fc71036109448d721b882681e1ccc5f4e70", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "79fff10de35f8b6c4bf6fa070394d343d068ed981cb46cfaba2f58c142b3f4e32665231fbff8", - "value": "1059830480173777119180095488" - }, - { - "id": "a85f9fc69dda9ab54e310f0320ab438e30a1c465d9c6519fa6ff3061a8c896fc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1156858503397706392027529216" - }, - { - "id": "724dce90d11944241102ba6e97e0ec44ab077d1279b9ba4db96110838889cb22", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a4983e8b54b5feb120eab2edc8c365f7d844aabfa8d359c62c8ade45ded9e8e9872393157e1f", - "value": "1030893999760679894087892992" - }, - { - "id": "4d80bfe14f7bc5173ba585e193a230bb594ec9dda13520cbf9ced64353f279cc", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "2035455527644517280302235648" - }, - { - "id": "e99a0b033927d47f8cab57ce715276a2d8f4a3104d7849ef138077cb3f9875e5", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7", - "value": "1176744521711636952091459584" - }, - { - "id": "e9ca72ab99974ef0a3e22fbd06974f0e4863ca4d53c855ba5d8ecc5a270fa4b9", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1251762705584264386104262656" - }, - { - "id": "a2bc2a2e8c5fcce5fe67555d819776ad516170f600c17b94784f9b273671cbc6", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1490534178378959212568903680" - }, - { - "id": "30a6f13b8999de1127d967d5140093605db84f76b27091275b1d97e097d3c612", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1258712968142735084686934016" - }, - { - "id": "c5292f43877300cf1b95d24c6e22a8ac60368a238681676c10999d2f5f55724e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3930639867076024022062858240" - }, - { - "id": "cadeaad5dd22de7f393f2620d2c6a3a5ff92cbbe0b78db33809b44b9a690942b", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1048525126662102050412167168" - }, - { - "id": "ef63e16d2b586f032cf8749146f7943b9e61164883fe74772addc3806f694db9", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1037111641924884908843925504" - }, - { - "id": "d5928cdf657a1f95aa6533bf1e0519fded39cdf257001e25f2e536976e2da447", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11545271227848219118433992704" - }, - { - "id": "eb1875de6a2d90548c4a6b934fb450dba3496d218e15319a0ad8d269f5174e57", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1082495782912668987177697280" - }, - { - "id": "9fc89adf1dc754b99c8e10d88bb931aa9f322ec586c9c2e8f948156aefbd0607", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1678978449259050455328096256" - }, - { - "id": "f45b386d12d8f1182b9057995ae48f834b0777151f52532f39adfa6468bb76f6", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1265636256215064086744924160" - }, - { - "id": "845e850994b3eb79830cdb5423b4c29885150541c08135bdc367b42866967e7e", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1815130067622046062583218176" - }, - { - "id": "7baf753447029531912da4febdf108ebcc9782a3c157cd7324a546bb58a31fc8", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1030726280823828242350604288" - }, - { - "id": "311d13bc3940d14c1cae2dbbef8cfbaf2f540c07b1436cf3490c07b3338e1b02", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1794947902488516016486744064" - }, - { - "id": "78e8d34a3d948f7adc890a67c76aee7116901fdaa8d0b770bd5185693b4cb37c", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "e0729bad9b06854ac1e498da7b8c4871a724d4bae2b6bb9f6e7e4c22829adbf0475368ba0c87", - "value": "1039224396462724591356477440" - }, - { - "id": "6d13b12f1be011c9ddb3688a7057bf543e630a7801991cd5cd8a5c4a440edcbd", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1213031620318817442640691200" - }, - { - "id": "e61f430a7293ad4d865edc3aad56754ba92f2793a5ee951ae6fbcb59f9330dde", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1085253226789743348045840384" - }, - { - "id": "d7ccc2e86531786f3c0f6f1247c5f9c18a091bd3aeeff18baa85e445c2b07ea4", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1124725525300602041911476224" - }, - { - "id": "e9db99df67f94622710aff1fe6db4e05cf755f4ce78844391710945ffd694f24", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1027152879726453692866232320" - }, - { - "id": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2420126169146622647147167744" - }, - { - "id": "b0486d8ad9f01db93d03ec937a634e83ed94dab358babdf78a17b001dd8001f3", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d", - "value": "1070586217583196439542956032" - }, - { - "id": "b854f70e1f6ed1c45c0950b69b84dc467b6552ee3ee2371e8660f979492a338d", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4211334114584715294664556544" - }, - { - "id": "046eccce38ac3904173936d7766673943daa337883a5d3507b9c593f40416b00", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "08e308fe96a7fd19fa57790d396a691cb1585b6feea99b657ea393bba13f46656db35b7986d3", - "value": "1046919301817881031601127424" - }, - { - "id": "4615ebc3516fa5788a7e033b43c82dc0e1f04aa65fe064671c9e2206776c9106", - "fundtype": "siacoin output", - "maturityheight": 218059, - "walletaddress": false, - "relatedaddress": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04", - "value": "1049097172772261592294391808" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218203, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Mj5acb4TLV6JPa+Cku18N1kLauI+rRQFAZVlPhH6y6w=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1170007268648115671356407808", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1125489800219710242033369088", - "unlockhash": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e" - }, - { - "value": "1132213685417073271974559744", - "unlockhash": "228ee64aa39db7a0ed3ea36a8cc581622e2a7e62ed946d5f398029b1516618383d0ea45ce0fe" - }, - { - "value": "1076525162364527620871946240", - "unlockhash": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770" - }, - { - "value": "39962206983968565370397130752", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4779817633086019634861178880", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1046478858101055260400287744", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1020765327460682419351846912", - "unlockhash": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc" - }, - { - "value": "1084764811730102409863102464", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1676761948039407828190887936", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1095194776097994565909741568", - "unlockhash": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee" - }, - { - "value": "1424300313819993032001323008", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1307883225791742274508423168", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1141209297181574608942006272", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1039774633401174851225387008", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1079429292687597918848614400", - "unlockhash": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797" - }, - { - "value": "1037551007950942014512562176", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1023522251143869716483801088", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1197264148475540007785857024", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3166343733058723909000495104", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1490522774325683789460668416", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2035374999866790131569524736", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3978111105481617129298984960", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1247193257481148259923132416", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1215144563135183534572961792", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "3673256794766290065077305344", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1178981396377786962755420160", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1233040445220295719323172864", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3535414921800069067757846528", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1093875585586539263116181504", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "16717526593860446164604682240", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10844242488921420793951289344", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2398863643457125825250328576", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1153327803624800917039087616", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1312661310983783970041233408", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9312566686195349708737609728", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1013716705927780277275066368", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1069701853517485240987942912", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1054057345352932018417647616", - "unlockhash": "e4178dcc05e185dde1c2d2f20704779b87a40d97e5aad636bf929d471ca48ab63683be299140" - }, - { - "value": "1107484027249366242072641536", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1043032360055249046739959808", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1032716803659017603724476416", - "unlockhash": "ea0b6c2524e3c8ee5f79184f6853860108036e7714cd74dd0a575d77d3abc00a1fcab854a2af" - }, - { - "value": "1052605759697457173340094464", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1460045543671530256496328704", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1037870689574652569511264256", - "unlockhash": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675" - }, - { - "value": "1057810775133203098890371072", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1665060200036336856161320960", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1834216270875838050116567040", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1013016388651112408874090496", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1069457883534004889570770944", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CVUlyscBggqVeuP5Ls5KeWiSwUcXClDfu1hvXcOfTZIGPlJB0VBaMhARX0nxhY8CFFi3kVZulKpkDRgdzviuBQ==" - } - ] - }, - "transactionid": "f8fd218d272359d994f1da7d578d7fa6ac38e187ca5df9ee16988cd192a08faa", - "confirmationheight": 218065, - "confirmationtimestamp": 1564445652, - "inputs": [ - { - "parentid": "4ac6aa29924ceefb9cd890e110b6ebc576ba4ef4d954d7d3cef1dbbdd47dbfa7", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "b2791c704bf92fd4d73624b7a4327b40919e87dbe2488c8d048f443370390b76c428ea40dc52", - "value": "146518641136664709663176900608" - } - ], - "outputs": [ - { - "id": "31a2681230b249193822cc5529a295bc28e2e123690cd473ea434ea6c9b56147", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1170007268648115671356407808" - }, - { - "id": "64acbdbe388600224002b36b9582b362c658bef01fbeac8f7c3869d228fa2636", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e", - "value": "1125489800219710242033369088" - }, - { - "id": "f19817aae98709e6663d2d1e3e73c64f465d3467ae55cc6f76f2038e4fcc192a", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "228ee64aa39db7a0ed3ea36a8cc581622e2a7e62ed946d5f398029b1516618383d0ea45ce0fe", - "value": "1132213685417073271974559744" - }, - { - "id": "5f909b80a75946fdeb60547dd7788577e74030e037a41551957161373007b1ca", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770", - "value": "1076525162364527620871946240" - }, - { - "id": "7f5834919a10337e5383383b3066fb5e32ea2eb3af54d5d88c8f76fdcf2c8694", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39962206983968565370397130752" - }, - { - "id": "9813fce18d7c0a6462ccfe71f75002c7a23a48313d4bc1fbc83bb4024bd1fbad", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4779817633086019634861178880" - }, - { - "id": "8c47fc8d4470be9aa92025ef8121273da3956dd6f0614fdb0b40fe6ceaeabf91", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1046478858101055260400287744" - }, - { - "id": "2519cc96f99a1e31c14d1af85fa703ee8aaa51043b78d40b20e3903d88900eed", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc", - "value": "1020765327460682419351846912" - }, - { - "id": "2dcfb8e64145a3a231d38549568f2a82fe731e35bbada63f7cab1e2f31bc01a2", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1084764811730102409863102464" - }, - { - "id": "90b5ead5205fa730a7d94556107d5cd47f8876679450b966f38167fac3ad6fd0", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1676761948039407828190887936" - }, - { - "id": "c100d01c27e94ecaf1538bea77efe7b7a1f19aa04bfec0a665f78ee7aefa46ed", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee", - "value": "1095194776097994565909741568" - }, - { - "id": "f0f26257725cb31d2c0b39de1492cbac5069fc25c97b5e69ffcad94685fec03d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1424300313819993032001323008" - }, - { - "id": "eb404d7a171b63eabd82c2c9cd94601ce05f9518776194ad1dd19fa31d5b0d90", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1307883225791742274508423168" - }, - { - "id": "8cdedaeea45a7749d46c7761419241d3b98cb99716227ed31275cb5ce5282063", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1141209297181574608942006272" - }, - { - "id": "64d039ec9d0c2824fe7615e5a13647cfdc46715a55cbaa2a919e13d98ca183c1", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1039774633401174851225387008" - }, - { - "id": "fa541578ed64094c3e7611dc77d97f064db13c5e73dc30b82cc2de6f44c30380", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797", - "value": "1079429292687597918848614400" - }, - { - "id": "38a639daa077d3b3ec300b2c1fce51e42f0d7de71b7ad5a2fba2fa2a8f6ef476", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1037551007950942014512562176" - }, - { - "id": "335e7e0d4b5d7eb759bec19abc92c39511deb01e49932c8d9bf35525e3e84507", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1023522251143869716483801088" - }, - { - "id": "61342419f91b859d7414a49ec815614da74e193a1881ccaaa40d0151c9822cda", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1197264148475540007785857024" - }, - { - "id": "7035cbf211b5dfaff73f62010ba5e40b1935ff52dedf5b5c720ab2bd05c53b48", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3166343733058723909000495104" - }, - { - "id": "4928c3ac5bd5a503ad500015141fd836544a27ba902b553cc2fe3a28cf67fabb", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1490522774325683789460668416" - }, - { - "id": "de48c5fcf489120691b282e7e052198874d676d9a203a2318aa2257e80855e33", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2035374999866790131569524736" - }, - { - "id": "5e2589fc7b5f13a64166a12bedadf885743b952475363c62c9461fcc6d56a64c", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3978111105481617129298984960" - }, - { - "id": "c6af93bd044213846936f578803e9128d633d4b81844d591e007858fc2b63bbc", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1247193257481148259923132416" - }, - { - "id": "52954f1fccd5f7e9f0f253638b738fd55c4fcb56adb0e562e704a583ca3b0212", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1215144563135183534572961792" - }, - { - "id": "749cf24b232bc0358e2d069e5214a1a423a73614b71d14c5cfb36721cba6f3e4", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3673256794766290065077305344" - }, - { - "id": "d9a8e36cee6f905ad2e00f85ead25459d0c99f141396dc21a82b61029d76b6b6", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1178981396377786962755420160" - }, - { - "id": "dfb9ff6157288e93d203d7325557d980cfdfcdcac2481dcc9a246ed8b9143406", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1233040445220295719323172864" - }, - { - "id": "9291730a4f266f4c1adae66831f92d0e95f408f53c6a41173cdc9dc17e5213c5", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3535414921800069067757846528" - }, - { - "id": "656e6b39d015612e01750abd49d588beaf578a6a54df48be011d8d036a4d5899", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1093875585586539263116181504" - }, - { - "id": "d4f76a3e2ff5fa5bdfb1ebb09e9e7dfff242b9305f34b11294c14b18eca3c3da", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "16717526593860446164604682240" - }, - { - "id": "dbb11887cb0b39c5fbdececf4b5cd37f19157a8ac9644f0aed9e80ec0c05538d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10844242488921420793951289344" - }, - { - "id": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2398863643457125825250328576" - }, - { - "id": "8e72531ce0e127fed1c25f310f39ff4cd901cd43b1ee29e6ccf0064d591600f5", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1153327803624800917039087616" - }, - { - "id": "c43e277c0d0892dc0badddf7fe9dda70dfaad1211986426be88215e99130c31e", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1312661310983783970041233408" - }, - { - "id": "6f8174b0b836bc447d4acbbce04cabf89eb4500645cb20a8e77fe320193e83f7", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9312566686195349708737609728" - }, - { - "id": "2229cc99d13cf61b170f2b2d17df1cb70d5743285ebc9d3092cf15ea7b62ce06", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1013716705927780277275066368" - }, - { - "id": "4ae1b1be932ff327313e67414d7caeef5145d3528c5b441949a6382537f33848", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1069701853517485240987942912" - }, - { - "id": "bc8638bef6b1b98b5ebcb29e59955451de00af1f94b9518ad72dc7a4be01c6f2", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "e4178dcc05e185dde1c2d2f20704779b87a40d97e5aad636bf929d471ca48ab63683be299140", - "value": "1054057345352932018417647616" - }, - { - "id": "487836a818c91644151d312970d36c08eca803abb14484ae413e0aa723340aea", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1107484027249366242072641536" - }, - { - "id": "17bfb9fce86ae147c17acae8e557a05e9b29204ea65d590187d695605775e705", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1043032360055249046739959808" - }, - { - "id": "a25ecd80e41ab525708f05e3ebe98240872445213a5bd597d15d597692e92ffb", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "ea0b6c2524e3c8ee5f79184f6853860108036e7714cd74dd0a575d77d3abc00a1fcab854a2af", - "value": "1032716803659017603724476416" - }, - { - "id": "df7c1ab138ef8c18137a48999ee0025cf7ff8181e5526bfdb644cac144a48314", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1052605759697457173340094464" - }, - { - "id": "d3e96ef8e67cb5adaad6c468021d18ec1e1b4f65bbbc3c5f3c5c5d2042f5ee38", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1460045543671530256496328704" - }, - { - "id": "fa3d0f65330049708241110d830d7f832cd9dbc722f39449725bafc5e3fa564d", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675", - "value": "1037870689574652569511264256" - }, - { - "id": "6919b921d2b464478ca676a420ece0cc8aa99ad9a36d19b5588147f1ae5f6b1a", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1057810775133203098890371072" - }, - { - "id": "81da978ccdb550314591a49739fbca7db6ac8cb4eb70565387e216f2b496c7a3", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1665060200036336856161320960" - }, - { - "id": "2a6ced5da1af66a7c0a6e11ded037ca033e25c9e3e0cd82a2d392251cbe99545", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1834216270875838050116567040" - }, - { - "id": "85976b2467c23703450499a7224432d40f5626679308572371a80b18395037a4", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1013016388651112408874090496" - }, - { - "id": "4be6fd08bfa262a629a2aa69149ae4ec6035143b35283db9f376886adcfe6590", - "fundtype": "siacoin output", - "maturityheight": 218065, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1069457883534004889570770944" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218209, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "JI2kfsLMEHqfKJa6qfUkPDQ2RL/dEYqEMT59O8mmHyA=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1124063908863281902271594496", - "unlockhash": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb" - }, - { - "value": "1087137744499316909004554240", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1042894855544917126321307648", - "unlockhash": "616ad62221e96f259f290816e50dfbf1ef01fd221ac65e973648400764b2914c8aa26612db1d" - }, - { - "value": "1168015947400846360599330816", - "unlockhash": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb" - }, - { - "value": "1024567925114239346821562368", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1265443751165462284812812288", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1090921198670357364761165824", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "1188648884472856377305858048", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1095841119286221231522775040", - "unlockhash": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72" - }, - { - "value": "1053729093261930698857840640", - "unlockhash": "325195e686c580197db95ace9279f31ac5fd3063c5f2de3dd7749f2f11a32402ea3eab1b0942" - }, - { - "value": "3814242765885592795726479360", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1112690346331496387055452160", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1047769548432324068274470912", - "unlockhash": "eda543a27b336e8ef796c8ab251509ad91eddea3b8466460fe01ee8464eec2220aa14f4eef5b" - }, - { - "value": "1033812856511812167401734144", - "unlockhash": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd" - }, - { - "value": "1033808250452208736205537280", - "unlockhash": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef" - }, - { - "value": "1100846322946558308008853504", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1011815299780864400728522752", - "unlockhash": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7" - }, - { - "value": "1055072208396347122840207360", - "unlockhash": "e961680769443297cda7573b011475f8a876a133428f9d9f1b6e26bc51b26ed3f45b650d2c43" - }, - { - "value": "41582799114915681892573380608", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1080190464709287089266491392", - "unlockhash": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5" - }, - { - "value": "2151325366886208981430173696", - "unlockhash": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a" - }, - { - "value": "2403135930122169566135058432", - "unlockhash": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290" - }, - { - "value": "4873288510045936015189737472", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1047324972788367492978311168", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1033923268688994211924541440", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1092878230761138034628755456", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1117071769827585147889778688", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1115401219096709942407856128", - "unlockhash": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf" - }, - { - "value": "1052374314406901547081891840", - "unlockhash": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981" - }, - { - "value": "1122759973106837178231554048", - "unlockhash": "86d137e05862a17a1e8a7b73a23b3847891aab73e74ff154e5ba8b5e6c955c970a76a99b3617" - }, - { - "value": "1006339687281834434927525888", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "1872229943696752916777926656", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "1067923984798181003240013824", - "unlockhash": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193" - }, - { - "value": "1895529753104956570696941568", - "unlockhash": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094" - }, - { - "value": "1056052882479910671467151360", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1058387718233692264315486208", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1267974314885240438601547776", - "unlockhash": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff" - }, - { - "value": "1262743626231981769654009856", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3250742800966139638374727680", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1502851782295060926416551936", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2190272802006051736497684480", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1675416207790375310830075904", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "1851777709346367192948539392", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4179968356360436140419842048", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1468588744637745905026465792", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "3708578872158819420269969408", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1108765151392874021875875840", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1231549591368290034161549312", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "17479582661175214536709373952", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "2458820731707286914208890880", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tJo9uaa/PUIiiV8YjIsNsGcCRqqzCu3PteNMbYOyeMmHLkgyKBbLfIrumGG5gnMGpVFjJFq7EGBXoOdBXFKCDg==" - } - ] - }, - "transactionid": "b0038252f9a05e4cddc8001e8a5e3878fd68f333bf55fa40d98f3ce2572d8d05", - "confirmationheight": 218070, - "confirmationtimestamp": 1564449063, - "inputs": [ - { - "parentid": "9c8158f9a688ca9e2175c2d24d047d78364e8c92814d5695c44e288b8e4b0bfc", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1d4738adc59f8619e05b3701fc2a9d5eb976169a27df4377e67be3b9f66ba34e0fa69f2e63e1", - "value": "134618132484289662535677739008" - } - ], - "outputs": [ - { - "id": "b1972ca0bf9d8cc4d0eaa73561815c25a6546638830eb3aaf35cd41095427066", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb", - "value": "1124063908863281902271594496" - }, - { - "id": "790fe37fabfd3625c5de837316e0557e2226cdf2e31fbb91dd04dc19f6ea10e7", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1087137744499316909004554240" - }, - { - "id": "db5188851e90c14873f7472a06627edada0c6c8b8e6f90d0dd3eae9e91f8925c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "616ad62221e96f259f290816e50dfbf1ef01fd221ac65e973648400764b2914c8aa26612db1d", - "value": "1042894855544917126321307648" - }, - { - "id": "e58c28aa951f38d0dfacc17b7d92078fb32a460b0fae9f2899d8d2f1e9d86bf2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb", - "value": "1168015947400846360599330816" - }, - { - "id": "65d3213c2378b4ee7e8cd002e4e634333b6c6b3ad838a8155fec1c0e1f1afeab", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1024567925114239346821562368" - }, - { - "id": "cdcb33bfc9812cb99aa90a2a78e17587bbd7ec63b11fc35a37154b02f4ee24e5", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1265443751165462284812812288" - }, - { - "id": "ab102809c06bdc72774716fa89c0abdcbbc86230678814323274d9c4795d7754", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1090921198670357364761165824" - }, - { - "id": "9960d606ff7a7affa8fb7f48944267053721d64a4305e2e83642a58c14ac1e8f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1188648884472856377305858048" - }, - { - "id": "27a39a3bf18ae480d16938f7da2f5b21a93e0c15e6095c291776ff741d3db1cf", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72", - "value": "1095841119286221231522775040" - }, - { - "id": "38d4c796ace5ecb7607b94007840f9f9aa1e8e21ec0117886608b2b2469d009a", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "325195e686c580197db95ace9279f31ac5fd3063c5f2de3dd7749f2f11a32402ea3eab1b0942", - "value": "1053729093261930698857840640" - }, - { - "id": "f045f1ae247d2cfca91e23462341fcf79b52d2b2aa9f3b234fff3978f7945a0c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3814242765885592795726479360" - }, - { - "id": "14de2f21782311b8f86c6b5724944bc925ff150695ff57036899838f9726addb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1112690346331496387055452160" - }, - { - "id": "6bc1d18a9994736b26c0c88ea90ab951f916ba7319e2230769466bca093f4f83", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "eda543a27b336e8ef796c8ab251509ad91eddea3b8466460fe01ee8464eec2220aa14f4eef5b", - "value": "1047769548432324068274470912" - }, - { - "id": "4759f5920db306a5fc85ae66fed1cb07cf5f9d2be639623b70d98138c9f66e26", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd", - "value": "1033812856511812167401734144" - }, - { - "id": "e53a36c7585693a464e942b89ec548ff9c71197b46ab1afc688e508b6ccd6f3d", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef", - "value": "1033808250452208736205537280" - }, - { - "id": "1017abc3d4140e92258cd7323847042c6f32e54fd32decdbfcaab0627bc13666", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1100846322946558308008853504" - }, - { - "id": "f02b3a5fb66b9aaf46477f591cf87b6f8fbdfe058bb451ad002ef657bef70592", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7", - "value": "1011815299780864400728522752" - }, - { - "id": "da818dcfd17be77051e100cd32dbdb19e0bfcf17bbb2bc84ce3006a2caf276f3", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "e961680769443297cda7573b011475f8a876a133428f9d9f1b6e26bc51b26ed3f45b650d2c43", - "value": "1055072208396347122840207360" - }, - { - "id": "2724298f635efd75c79dfd7544200debb9af9556788bca4ff962134fde586c7f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41582799114915681892573380608" - }, - { - "id": "dac5db4aa2eff69cdac44ddd81606a6d27170238002f904d101b9a712a288c5b", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5", - "value": "1080190464709287089266491392" - }, - { - "id": "7bf941fab5ad2c4e623edf9d04b9a199b1a49044fdab27dc30c9373b7c944ea0", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c0ee57033595f2e6bcd1b5ae909b9cf66e03a7ef6ae08ab2718800a2787cec666879ff1dc41a", - "value": "2151325366886208981430173696" - }, - { - "id": "3ad4d3b88ce2d698a5edb6dcc99eb2225c63d2df36ad88cf69ab69d66b0df698", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290", - "value": "2403135930122169566135058432" - }, - { - "id": "20ec91aed5219ff675d80c44186fddbd93e7c3feafab9741e4e67e058e45beeb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4873288510045936015189737472" - }, - { - "id": "3a5fa0a98155ca8e8fbf932b0629a8f6ed7d7abeae0c5a6cd860731ba244028d", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1047324972788367492978311168" - }, - { - "id": "6e2da9e12e138d35e29322e7ea6458a49dce633a701874cc8a3f37b2c8ba448c", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1033923268688994211924541440" - }, - { - "id": "e62e68759f3d7b788e8e9425d6e476e02f66f1f778a1ad6b0562affb42578853", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1092878230761138034628755456" - }, - { - "id": "630a91ee12599b265780046bccce19d07ead41d1c5c5d89aec57dd3dd7773659", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1117071769827585147889778688" - }, - { - "id": "cfddc510deb8404eda4004c94d14339cb51889c3a92a201666266b6601aaa864", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf", - "value": "1115401219096709942407856128" - }, - { - "id": "427666f47aa8259d254015b7a12d065d4786f622e9700519654d5367f5717e46", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981", - "value": "1052374314406901547081891840" - }, - { - "id": "6cc8ff12c7a559fb98c0e6c70ba5384eb2883a9e4044888cf6596af4f45bd015", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "86d137e05862a17a1e8a7b73a23b3847891aab73e74ff154e5ba8b5e6c955c970a76a99b3617", - "value": "1122759973106837178231554048" - }, - { - "id": "e9e7a5d2e0e78219b0178c2c84da858941ba311cda50caf14c62b69ea357bdd3", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1006339687281834434927525888" - }, - { - "id": "1f517ec30edddd2c163b402c7e953f899ad9943c37cb98b0eac3a470c8bef63e", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1872229943696752916777926656" - }, - { - "id": "bd6c06614dfdfb2a2dc8c0847841909f3d08e49365e36502bff57d6856b9ddc7", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "1db486dd39d12b90f0a6ff633a6c65f77272d31e4ba09fa8a90c301f6155531e0c1105463193", - "value": "1067923984798181003240013824" - }, - { - "id": "1c56a1eb389120c8189f0673f02e382ba3e98a77380f1b5024985b8ceba5f781", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094", - "value": "1895529753104956570696941568" - }, - { - "id": "026d3fb4f33bb8b6b2c5b55b9f3dceeeeaa91c51a8ee8d567f0e5bb6ac47f95f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1056052882479910671467151360" - }, - { - "id": "393bb03b6e49eb39bff247b339459b195895f656cc91f1e236261d5835dc7108", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1058387718233692264315486208" - }, - { - "id": "8b4dc5dc9f9d4bafc4b688f4e1ccb2b33f3fa6431a9f74c8573134c1db29d0e2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff", - "value": "1267974314885240438601547776" - }, - { - "id": "f713f51e8cc188d1956ca645b32ce7feac0e1f65dde3a44f2ee07ed4be50af06", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1262743626231981769654009856" - }, - { - "id": "5214321fcbc8d336cf372ac5b57d9dc354bc31c892223bbff8fa41f369d01842", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3250742800966139638374727680" - }, - { - "id": "070fc269e2193b49d42fd0ef2c7830161f8d309c9f46062c15aeaf695ff55b1e", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1502851782295060926416551936" - }, - { - "id": "03a7e44cea8e3507636cbf49cd148e3ce9226b564cb314217bb5fa6ce5fcf9cd", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2190272802006051736497684480" - }, - { - "id": "48b679705041ef15187e9e9371c72332b8ecf111a56dedc8ae311df77d0f8592", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1675416207790375310830075904" - }, - { - "id": "a08f37933b1a2cac401120cdb56804d3885c95704f4ddf68043805df834491a6", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1851777709346367192948539392" - }, - { - "id": "a4dc007126538ad255db0cf7b1527a30704b5588066f9176efa70d7adc4c7061", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4179968356360436140419842048" - }, - { - "id": "966cc309f50aaf7eea38be650224e982a6c48fc5f6b6bd02f0481d7350f3c5a2", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1468588744637745905026465792" - }, - { - "id": "2cda020be1d613a774620645c3495ef343e73fae098078ad712b5e6ef020a7a8", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3708578872158819420269969408" - }, - { - "id": "69d621de7fdfb3f4e022b85667cfb4877f2cba552255c1caf6ef6f98485893dd", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1108765151392874021875875840" - }, - { - "id": "af146520cc6f55a7e075138169e4a3d07590518dc007f7cc6043a9ce669d0808", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1231549591368290034161549312" - }, - { - "id": "74e53773aa9a9cd0369d79bcc20238c1db531a304613af5365f3ea6b4a0b3afb", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17479582661175214536709373952" - }, - { - "id": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "fundtype": "siacoin output", - "maturityheight": 218070, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2458820731707286914208890880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218214, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "fA286eHqhYEMqiXI3HxFf92EAcfUfMClFtxJUKVIMws=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1121506959340134179064512512", - "unlockhash": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f" - }, - { - "value": "1152640894085953041159159808", - "unlockhash": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c" - }, - { - "value": "1027134278166328675695312896", - "unlockhash": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69" - }, - { - "value": "1039437677340698112441188352", - "unlockhash": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7" - }, - { - "value": "1096112830605318792480292864", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1014190488557916262797934592", - "unlockhash": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c" - }, - { - "value": "1020754222146573533712220160", - "unlockhash": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29" - }, - { - "value": "1162782117964971307262541824", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1677999641335010017140539392", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1488620700301502101902589952", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1136459312467095521782136832", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1100743132145574630735740928", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1066293700307831709960765440", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1205077252216608629481537536", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1216563708720664684085116928", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3244107277053309817697861632", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1549872596434604058589790208", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2169002919741756134280658944", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "4082651102860063836978806784", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1385140459513090398652203008", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1185503821496165646297726976", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1043563514295653805978157056", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "1137438313294967178920984576", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "3712193265892502004824014848", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1119975559848016521522577408", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1240673966084106563996352512", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3589893215147228236078907392", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1002862787383801620034748416", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1445985944328724055746150400", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1093571017642476083516801024", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1058989485682308598959439872", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17055169017810524179580059648", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10776052960481113005631733760", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2584212828375632800773046272", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1210877490654857658449788928", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1300212901390975944187969536", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9575208496673071193149931520", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1000498744213128581081464832", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1008228105771331233169539072", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1054462914272622506337501184", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "1064171696455074485837627392", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1244522119409330648695439360", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1021742204748781535506956288", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1216118921522997285974704128", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1366521377591089748765573120", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1023489069745641136057892864", - "unlockhash": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22" - }, - { - "value": "1047665800871444613177835520", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1051939926534653531366391808", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1705538776851545097874964480", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1046391733882684052241104896", - "unlockhash": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "tZ5q8Lqe/V16Hfen1ZvQHzzgrkPYOgk7V+qY2iHevHMQYVfxSqJpajTCYfPbSJGcEDQezQ/T003SF7j46tg0DA==" - } - ] - }, - "transactionid": "7fc472ec610dc2a82b6ee91fb4111f9494efa0113fb441839da0763f7f9ade19", - "confirmationheight": 218080, - "confirmationtimestamp": 1564452767, - "inputs": [ - { - "parentid": "89753b9df2682f146ec4c852476a6b4b5718e7405c2e313228491dfe65bb7919", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "9ea17d97c5072357f221c374d61f2ed824e0379c3b687596900348f310214b1eb5059344c7c7", - "value": "104941007249657454999636295680" - } - ], - "outputs": [ - { - "id": "2cd4d9ea9f34500ca60ddc7dd78cd2aad8a8a948caeda0d0f15e383b0f1b461d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f", - "value": "1121506959340134179064512512" - }, - { - "id": "b56eb85fa2340ad1882e169f4e2c5427f20c9863087fcd5b22cdbc078779912a", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c", - "value": "1152640894085953041159159808" - }, - { - "id": "65b0ab74c79e7aa6ed05d9098883a8acf1a77f78d3d13ef769840150e6ffc610", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69", - "value": "1027134278166328675695312896" - }, - { - "id": "c1a9a71f0142f42ef9ab21fd6406f7c2f43d7071200d6bb10c0737f8696428bc", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "86f4ad7fa650e5368cb32d0bdaacef5e0f577cb6c63ee6a43462204aa9e867e11d46352919c7", - "value": "1039437677340698112441188352" - }, - { - "id": "6ef5c0a5dc8c54a0e1cec8aca85c4300fd5a687714d598d71d470be67b825f3d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1096112830605318792480292864" - }, - { - "id": "89a0e3d50f426ddb531ea6471b2916f81d90eb2fd5f9f3b0f8e89f74513bf549", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c", - "value": "1014190488557916262797934592" - }, - { - "id": "dff190d2cf499de7336e26c6010ed5bfd058d87fe01eab02bca0202204e757ee", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29", - "value": "1020754222146573533712220160" - }, - { - "id": "b3d80eb285aa0cb69b3397d5396ea65d84959ae05fff44cd31246c68d3c1304c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1162782117964971307262541824" - }, - { - "id": "8e8991c4cd87755b8916e8e08fc7e10f09024e95970fd71b76d2ef132e0f9d92", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1677999641335010017140539392" - }, - { - "id": "08a331a976b24bde24bee3eb5f1fd69efc9f1bc9506ccdbda042fcb23c645f0c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1488620700301502101902589952" - }, - { - "id": "d4e13476882e66f41b6c764af432e286a3423247a61a3cf1659199f723df3efb", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1136459312467095521782136832" - }, - { - "id": "9ac54d4e86240a389f4623cc1be985a691011ed21b4605e541235873076230e3", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1100743132145574630735740928" - }, - { - "id": "e890da9568a89af95b31a123aa067c342e2c6f4d7e8e862c0d176ea2b5413cbf", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1066293700307831709960765440" - }, - { - "id": "562d6117d29893526832b8b1604117da8e519d81f87f1b8c4ccbd407861bebd0", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1205077252216608629481537536" - }, - { - "id": "ca657194e8f032ffdebd5206a40085b0740dbc2ffcb6a54fad092a8dc0adcfd8", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1216563708720664684085116928" - }, - { - "id": "a0a9053228a796abe471b6972820901dba115a66a52dac25f9d0c5b9730050e7", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3244107277053309817697861632" - }, - { - "id": "01add4f07291098929f92bfec4eeb04bae1b4f2eb25af4059361d17f7a1c9bf3", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1549872596434604058589790208" - }, - { - "id": "1a34521197a2a395d593b010511d63fff9d215c89782f975803ecac8e1b935ff", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2169002919741756134280658944" - }, - { - "id": "0e40b6c14050e8fcbc414d3e12613c095326d2140df153288dd38682a9e65cfa", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4082651102860063836978806784" - }, - { - "id": "936b1076aa62fd95f4c3b9903a5d7b0fa1c0705234e4de07b4de0aa052117a01", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1385140459513090398652203008" - }, - { - "id": "6e465eb667c7a7f5e20bbcc2f15ab2b7f818d6aeb960ad02933c83d53788ad7d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1185503821496165646297726976" - }, - { - "id": "0f973c8d5b90d5ecd834d0bb15ed45250740019723302ec7de91fd6e0c551180", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1043563514295653805978157056" - }, - { - "id": "ad6ac496f0b57cdaa5ff39ef5e9079cde6d9b8c64f5aa0023aa927ad03cfdc23", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1137438313294967178920984576" - }, - { - "id": "ca5b068e472674a9ddd6ebd3ff01667d6ffb6f55e775154b1fbce642c9bda976", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3712193265892502004824014848" - }, - { - "id": "6b5e044a51bc4e99044b68f531b0bd007e75c9a75323591b4007da2878bc171a", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1119975559848016521522577408" - }, - { - "id": "55c2e51180fe0bf975653572b7ad8a4603ad46d8fc3b09a5272ec8137671171e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1240673966084106563996352512" - }, - { - "id": "9cce5fca210813af68d01d35f2ac60f257a0eac4fdf534aa3211673d16014c9e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3589893215147228236078907392" - }, - { - "id": "592daf66e7d3d23b5122e5c2a3b6bc5d8dc6736e0112cbf196f0e71c56db10fb", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1002862787383801620034748416" - }, - { - "id": "b0288595349f33ff4b38a1b0ef25ba22e9844b20c5072cebed1b3adead064341", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1445985944328724055746150400" - }, - { - "id": "bf027ba50f4efef6e44d94ece6c3c46132a8b8e9f850366de3b7d9fd540c2c00", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1093571017642476083516801024" - }, - { - "id": "5e95ef7acce2eaecc558b05998fbcf1a9736a80aa03294ea2e811b5f18812db0", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1058989485682308598959439872" - }, - { - "id": "341a09256d56d57fef4cefc0281b2685162f7f6827b525889867497c19b34ae5", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17055169017810524179580059648" - }, - { - "id": "1073e70225900577738dcfa564e964d1484df71230863d430edae592ed3645c4", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10776052960481113005631733760" - }, - { - "id": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2584212828375632800773046272" - }, - { - "id": "96feb917fc472dfebbeed5faae6351b3c0d4914b70ba6d17c9f8a7d9f084b547", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1210877490654857658449788928" - }, - { - "id": "5576ed1555304fcbc8ffd6c4916986e376536a4dd0aa990db65a68ea02f66988", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1300212901390975944187969536" - }, - { - "id": "141122b2e7a31b56cb9a876d742190dda3f44aff9f5fee27ff1b6d394bdf8e33", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9575208496673071193149931520" - }, - { - "id": "bb7aa2aa53f6d37e0a80118caa6c50bedb4aabde7467b61e4d060b6a3dba6564", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1000498744213128581081464832" - }, - { - "id": "7f412ea3b089853bc755ad7ab982eb4744a521aea959795ba384f86b93e94b7d", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1008228105771331233169539072" - }, - { - "id": "5fca8eacfc2452f0f6640178e35b16410143326a4e18955731c37cf5d8291a51", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1054462914272622506337501184" - }, - { - "id": "12eef96def288d507b97ebd8f76e1cf399fd88fd02bbdd20a6aeb61b8a9b1df6", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1064171696455074485837627392" - }, - { - "id": "32b9687009e5e92c01425f09bbca2379aaf40a90da12866d71607d26dbcbe3a9", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1244522119409330648695439360" - }, - { - "id": "44cece0870769f7e952b055fb4b7750dcf1e7e4bafc86e2afab01404c027607c", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1021742204748781535506956288" - }, - { - "id": "4d3f856bfee96e4976f301aaa96cd2a9d2b3a846c214586d3fbccaa6bf5c8637", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1216118921522997285974704128" - }, - { - "id": "eedce7e0bfba757b37e9751c1aaa68e278abce30de288f2b3a5bac10d882d3f5", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1366521377591089748765573120" - }, - { - "id": "6f3a46c15ff2dcd09a6135f29d76422f77687287862d77441be24f91737512e1", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22", - "value": "1023489069745641136057892864" - }, - { - "id": "18e3e93389b4b67b0de07e7b6c61d25f64f49ac8756939a9ef0691cbed263798", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1047665800871444613177835520" - }, - { - "id": "fd43217f04143eee426ab1a6e48cf329233ded6d5100c51b2d0b6b18b175b999", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1051939926534653531366391808" - }, - { - "id": "fd92dc6548c959722d2df4c95574bda5c26e40657e81ec7c918c13dad81d67a9", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1705538776851545097874964480" - }, - { - "id": "83cffdeaae57d6bd20fb0b0f46ee4be42eb5c5c416d9ce548e8d90332fdf0c94", - "fundtype": "siacoin output", - "maturityheight": 218080, - "walletaddress": false, - "relatedaddress": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98", - "value": "1046391733882684052241104896" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218224, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "KcQVWCS2tz27jyMOkbprvxuLyJeeJvLA2wvLhLsbVhA=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "3568192259803967107696164864", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "2686797296490122071582441472", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1189033575387207419591393280", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1289352091126914205091889152", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1037442203865993880397611008", - "unlockhash": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b" - }, - { - "value": "1116343583594886786983395328", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1038779097139651713493467136", - "unlockhash": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87" - }, - { - "value": "1104769081424432658697945088", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1071292118921597249827438592", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1065516851843791164030386176", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1205344647281623927467540480", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1037830636082753793210908672", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1170815086249476065888567296", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1468977678205127126100738048", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1209962936966697732800512000", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1038453027624943467768053760", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - }, - { - "value": "1846453772241295881239789568", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1055466505709732700927033344", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1030520111991616188235841536", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1002239772633890811951874048", - "unlockhash": "3e1713e50bed28e5cf1b96f792c11c9b54d83c5564ca606f689ef9989bf9a7287aaa3ddadc08" - }, - { - "value": "1041185654481120013024919552", - "unlockhash": "c6e0c60f258750af1b9877524b3616df0f19ac61643965525b7d4ede07f4e518dc75d0e6dbad" - }, - { - "value": "1083075028716419309310509056", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1083366215273505441388691456", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1032736164739575495349370880", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["146400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MZnASfz7SiXldp4ssqmhjWXIs60pMsRSQaVfoIdBldL07eLNgHCoeiIwF5kHmJ6HvGsTwNxHjtO/+lOplIzgBQ==" - } - ] - }, - "transactionid": "ebcdc214afd2975e3a869341fbb1d928e7db2ea4acab4422029329742d2cbac2", - "confirmationheight": 218086, - "confirmationtimestamp": 1564458815, - "inputs": [ - { - "parentid": "885495902727a07ad6265e01af60c9f31fce524d81af86f369a54382b1715b67", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "6f32270548f896471980d1d3a77f3c35cdf2817186c2b8ce45abc7ec90cfb64bfaf4f119a03f", - "value": "31474091797796342212056481792" - } - ], - "outputs": [ - { - "id": "edb6dc0166b1070906074c7fe15b9e35c8231b92ba19e9a2f898f01318d9c6ff", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3568192259803967107696164864" - }, - { - "id": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2686797296490122071582441472" - }, - { - "id": "1cdb5addeaad968c025b88f34802221fd9e20aabae2285933d9cd86ac8038776", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1189033575387207419591393280" - }, - { - "id": "e87a3aa6dc19b710c3ba3f6673ecaf89fe90a6eb1f106942e7195f2ad28f3e0a", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1289352091126914205091889152" - }, - { - "id": "4ed6c1a35a0e02e8a752e442e21d5e468897d0fa5aaee816f3e50a3e20660010", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b", - "value": "1037442203865993880397611008" - }, - { - "id": "5009e9e83905cd0cb8098f467e114332e252f791e1a21e9f47080fff893a6f69", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1116343583594886786983395328" - }, - { - "id": "e7c367b262b651c82350fddcce0f3ffdaed0e8473242d9176d52ea7adc6925c7", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87", - "value": "1038779097139651713493467136" - }, - { - "id": "b110951fc468b77093f92c5a86f4b18e3796f2a5ad8ed7a0904b50ad3d5da76c", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1104769081424432658697945088" - }, - { - "id": "974a8c5026e82e0ec4cc42c4859e691b933c3934b426516bb915d1b6f70ea405", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1071292118921597249827438592" - }, - { - "id": "947884f03b52dbb38f3b377bed1848bd00260f0f3f898c18e601526621b678fd", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1065516851843791164030386176" - }, - { - "id": "057d88bbc4a198b6727c10486db957fdbc9354ac6627910810a841a59367777f", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1205344647281623927467540480" - }, - { - "id": "a301d38b4ca4c2befc939c2862d5ac9f96970035565141e111519f51c9b66dd4", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1037830636082753793210908672" - }, - { - "id": "3e5657f558463fb8015c427c29b8f57b366f3dbf812c31def5ed5276368e33ad", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170815086249476065888567296" - }, - { - "id": "fc36f241efa3a1983e49d9bb753ea9912453fb0d4b4d2d1a3c380df20208c0ba", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1468977678205127126100738048" - }, - { - "id": "48ce4baf185228ca3c595e1312d47414a03f2c9378bbcbd9d2484c366fe64598", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1209962936966697732800512000" - }, - { - "id": "8d0de74a77998ccc75d46f9a88739b602a4f68b2344050bfb85b1ad554a64d85", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1038453027624943467768053760" - }, - { - "id": "28a8bdf9872f6220093f838340faf548530c138341ed1fb95f1044678d9a4d85", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1846453772241295881239789568" - }, - { - "id": "9d1ceeea5a1f087f9c08c5979a4287a4cd7304951e225a764b3378bc88108763", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1055466505709732700927033344" - }, - { - "id": "69bf11f6ed129e8a7bba0af237c3fec7026254d08388dac089ccca8394fda945", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1030520111991616188235841536" - }, - { - "id": "c5bcb472ad21ac3e375dff733e5d0bc33664beb58a22fa6b29877f372e4c9699", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "3e1713e50bed28e5cf1b96f792c11c9b54d83c5564ca606f689ef9989bf9a7287aaa3ddadc08", - "value": "1002239772633890811951874048" - }, - { - "id": "3f85e79b2ec7bc40462f167484a5536f1a093d751dbaba09fa5747fe48fb3829", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "c6e0c60f258750af1b9877524b3616df0f19ac61643965525b7d4ede07f4e518dc75d0e6dbad", - "value": "1041185654481120013024919552" - }, - { - "id": "1b8e155b7e5a353f58b2a61ed8150684a77faba1efb9b25ed48dea77e93c87a3", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1083075028716419309310509056" - }, - { - "id": "10ef25533f9c880c00949a66eb0eaac71f2ef6c469d4055a9098b220529fe3c6", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1083366215273505441388691456" - }, - { - "id": "40d4a770e9ad64fb3ab4eff56db7aa8b2c0d99363325c74a006f19909cb7c7a0", - "fundtype": "siacoin output", - "maturityheight": 218086, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1032736164739575495349370880" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218230, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "146400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "nzO0EXhZ6XDuZ4J+M7HAAct2xP83T8yzvFTUltV5UiU=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1394997422975988850498273280", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "1296320147188445587744227328", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1214174296428594389008252928", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1208386520867796682739417088", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1154904029639518339158507520", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1258544840837951329652178944", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1144058486649457906305466368", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1258355609587191900096430080", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3660127502763621877096120320", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1035520832484468027973173248", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17526156331110210435863805952", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1031928216686325989526994944", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11288265182982731734464856064", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1016228342268634806519595008", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2731826231198176090764869632", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1237551893065452631636312064", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1402201692444809203046940672", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "7621183484151434266147815424", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1014906893210285142812098560", - "unlockhash": "0e02d3e36d04d048dd03cf8e9876ec642a1e8fb593a6bfe7ce0a83b2e28a36e86244ea4ba22b" - }, - { - "value": "1120557114230450523536293888", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1136740932795362763861131264", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1016347292465788967729741824", - "unlockhash": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1" - }, - { - "value": "1134682698506825670777110528", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059977942073144864597606400", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1162702543665513423725920256", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1168135268749220554134126592", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1032676690325578696482422784", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1382710902006190457642549248", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1011235862285533693416439808", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1043221037219990736080502784", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1810576946164646427569946624", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1892240497286497748427735040", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1751512608480153109499215872", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1144903014783513070779498496", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1222870092121443418196934656", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1452706968546465892345577472", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1026114884456072117023932416", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1181449042092676182748168192", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1503323405259687424920911872", - "unlockhash": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["200400000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "9SFIXDJDS2+dhIVKx+RZSEUMFuv1SK+qV80iM41eTMUVN9TV4eQwSKiMgxc0+pbPGrCQj/qvKgvgA3CtYWiaDw==" - } - ] - }, - "transactionid": "9765f5a2a423d4cee5ef747a093f724af19013b0842ffa107c5e178fe8ffc7d1", - "confirmationheight": 218089, - "confirmationtimestamp": 1564459919, - "inputs": [ - { - "parentid": "5717f7711e2023d8da021a84b5b6bcf244ce11c32b8f90682f06c3711688517c", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "fdf93737e486aea1bde01457128b6e10b1d5c14ec3d02a866caf8275404e6177d34b74fc7ecb", - "value": "84750524100055850934551101440" - } - ], - "outputs": [ - { - "id": "1e9aeb56b337b8ab8520f7426fac0861af7667adb7bdb00ad57c3ba8b1d8fb3f", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1394997422975988850498273280" - }, - { - "id": "69e60d5557dce0ad5877d960d063f4041c5508c03bb4b08231adf8acb9208a47", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1296320147188445587744227328" - }, - { - "id": "c8ca60a120e88847d3e0fcf75525f50398e7439f166ec0db2b9c28990052b494", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1214174296428594389008252928" - }, - { - "id": "a5fb63b0880c66ff52513053bbb3e61186a1391c72e97ff484a5d616b7dc3e5c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1208386520867796682739417088" - }, - { - "id": "af57316ebda019853d27cd32697b874af64d9bd6582be17650002e2c53eb90d2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1154904029639518339158507520" - }, - { - "id": "14585155df62411856bc26065ca374e7704221d7a74f1ec9230fd556a3a86e07", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1258544840837951329652178944" - }, - { - "id": "a743d76b2b06efadf23249f735c2e2c993c8671292db7722f5ace9351c0e2f03", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1144058486649457906305466368" - }, - { - "id": "d3a492de376163ec6b08d54958a44bfc1c9f9b71c7bbe93b4acd8f60b14bfc1f", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1258355609587191900096430080" - }, - { - "id": "3467da55351b202b4489737bbcd65d9a4144d4e424aa2893711b00a81883588c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3660127502763621877096120320" - }, - { - "id": "18786b566347b94832d1316a78041b253d7a3e421481fba269c1d24c294839a7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1035520832484468027973173248" - }, - { - "id": "30dab16fef84e91efc9dafc9c77cfcc468455013a3d78487688e076bcae881e4", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17526156331110210435863805952" - }, - { - "id": "1d66c016f5d44fd20b297a861cfe6c6c76dd6d32802788e15b463f4b871f9182", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1031928216686325989526994944" - }, - { - "id": "158dd7c422b125b99d8e66deca894bdc8842cc038eb6ecee677ef17c4198e3e4", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11288265182982731734464856064" - }, - { - "id": "3c37589c8c48151eeb9047d085af3495bb5de5ac7f33e9640edab120eb1d0a25", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1016228342268634806519595008" - }, - { - "id": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2731826231198176090764869632" - }, - { - "id": "44e9dee17a457217f9be202ccb776a509dc798e7cbc652575d3dff638e0e6281", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1237551893065452631636312064" - }, - { - "id": "0c88084e883194807ca4c6a707b8247431fbbd938cb31e7ac5579d59da18e09e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1402201692444809203046940672" - }, - { - "id": "d1cc57527f074d4e068f3195ddb07c23a788713fd1ef358f28ce4497c60de1b2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "7621183484151434266147815424" - }, - { - "id": "5ff069ed41f7f53d4b2b12eb05df617ecc2d674477be2e03ae79db2823741d2e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0e02d3e36d04d048dd03cf8e9876ec642a1e8fb593a6bfe7ce0a83b2e28a36e86244ea4ba22b", - "value": "1014906893210285142812098560" - }, - { - "id": "7de59d3a066fe2eefb313b963e9c5743aa96210c1b77f453d90426bc8226b5a2", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1120557114230450523536293888" - }, - { - "id": "7f5ac38be58b35f750fee49e31ee623e42098c2929a0bd22105a3c55e5e460cc", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1136740932795362763861131264" - }, - { - "id": "5802a466f639f3d387236075edd9dc8eaacd657cc93ae9d512fa12f957d61c65", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1", - "value": "1016347292465788967729741824" - }, - { - "id": "e6ab1f5d9b191a7825b84cd1c657d9fea3f72e36b337625c1e13c8b53a342738", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1134682698506825670777110528" - }, - { - "id": "a1db31e007710eb3c365a0aacd84cd5530cf35e25b2f44f21201084599c33238", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1059977942073144864597606400" - }, - { - "id": "c56dd0b6d17f0bd7c2cfcd1926fb726bab418dec277cc730d7a6cd0a9252d8e6", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1162702543665513423725920256" - }, - { - "id": "bf5b18838bf24e11472b6dbbb61ebaae9dcd8f3b0cdf2ee8d16abe821309ca68", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1168135268749220554134126592" - }, - { - "id": "5f7628277739cb327745db0e86fa796cd7a08fa6e66f6599cab04bd430c31400", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1032676690325578696482422784" - }, - { - "id": "65cec774b58923f1eec4ad14c9829812ee884198a5dd9d0c9039ec4d44b9d0e1", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1382710902006190457642549248" - }, - { - "id": "bacf175f36e24b27a32ecb3f4417412ed5713f9e04bd6091171aaf3631f03bed", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1011235862285533693416439808" - }, - { - "id": "386c9ce1d7000ce113331879da3eb076210350279501766357cb37a32ef2cdf8", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1043221037219990736080502784" - }, - { - "id": "ebd44eeab80d6ea1d83e18eeb83229acee56690c36915927c1055f52ebdfd89e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1810576946164646427569946624" - }, - { - "id": "e7b0c2e3b5da52678711a070922a6acf405f0176bf74686ef7b178a55a5b51e7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1892240497286497748427735040" - }, - { - "id": "4be02f77b5cbbec4af1dbc67891f553cd1c3a448ea5353465c6c23ee8c046b66", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1751512608480153109499215872" - }, - { - "id": "4b6e1e81f076cc74bd0a63e7bc129bc494609a7e8b796f706fb10b1113272f9c", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1144903014783513070779498496" - }, - { - "id": "4685180d414c638b285ff41fbd211394f6de3da034cee6b95fac7548dfa76d4e", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1222870092121443418196934656" - }, - { - "id": "598a59ccd9322f13d74c8b163cd99a4cf780631a6095a6b3da477e61511c52c6", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1452706968546465892345577472" - }, - { - "id": "0a470dc4dde308cc48be68fd0e2fc76ecd5f873d1b4496ebb1b5351859cecb7b", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1026114884456072117023932416" - }, - { - "id": "e6421e432652ae8fe33b670581f25d4361667c5655bac78d1070d43a03368eb7", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1181449042092676182748168192" - }, - { - "id": "18624e951a1b320136baae8239f34ef94940c840199ae198123173bac854fb56", - "fundtype": "siacoin output", - "maturityheight": 218089, - "walletaddress": false, - "relatedaddress": "7d7b3550c468b8392c852f867c54b0172be014c6eaa0cf72d9da3cf225f4fa525d61eaf654e3", - "value": "1503323405259687424920911872" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218233, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "200400000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Paij5Czu2FEzoOTPXMuAhhmenTmcOsVvoFvMlPtxMKY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1053653289732850454829465600", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1163421456674727670696640512", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1132184958995360971083743232", - "unlockhash": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf" - }, - { - "value": "1909125198039245632474972160", - "unlockhash": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094" - }, - { - "value": "1285994062580140428905938944", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "2193588060379378441621864448", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3960342574964867721815130112", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1064564579166381904188014592", - "unlockhash": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2" - }, - { - "value": "1083385206698218890068361216", - "unlockhash": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0" - }, - { - "value": "3884147499619739159303815168", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1010597182087427283571179520", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1079180843843476592495427584", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1313138296890198250125000704", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3806717705803300059784151040", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1077572186302155474329927680", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1487309907286771540080197632", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1097360787761822888456355840", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1047309317557820682015866880", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17883053826573196464100474880", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11210920433418904800723992576", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1067477287944999206092013568", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2848857595274758581309669376", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1241796698615765600779108352", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1384213755580319413817049088", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9379669096233368808299954176", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1220448698488860394024075264", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1011960496762286107730640896", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1016441565810593952398426112", - "unlockhash": "f20af5d03a5dad850bbde5496099b2464baa3e5278599f0002d37e091271a6ce32c6331f5a82" - }, - { - "value": "1182473396066795432086601728", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1238049750274728493792100352", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1060417713073136983589421056", - "unlockhash": "85efb7029d3597911e93cd449d3d8662adea9f7b3ee0c891f4e3fc95682acf4b84da20db2140" - }, - { - "value": "1277534897630390871954292736", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1071728405427355378237440000", - "unlockhash": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde" - }, - { - "value": "1966813265020078605775929344", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1085062182044538873971736576", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1074491499272127440242278400", - "unlockhash": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692" - }, - { - "value": "1261469461290651884849725440", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1089051178163842957850181632", - "unlockhash": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97" - }, - { - "value": "1044910802351034860485738496", - "unlockhash": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0" - }, - { - "value": "1013762657131118008745852928", - "unlockhash": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395" - }, - { - "value": "1066712976118769466476331008", - "unlockhash": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0" - }, - { - "value": "1053900750332928045607419904", - "unlockhash": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6" - }, - { - "value": "1160847069069425633755004928", - "unlockhash": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["214800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "CQEh/Gg7Ll84GU2PRil/g0mr135L5Plfl+SSqX2EhtuUUCVHOzb34jH+XzrpIYZdfTUsQh9llCKvCUNi4iLvBg==" - } - ] - }, - "transactionid": "19ab852996543f6776fd5e4a1d9538c7663874bbe4855161546ddca1476a225e", - "confirmationheight": 218097, - "confirmationtimestamp": 1564464957, - "inputs": [ - { - "parentid": "f3a48a8c444a1f599d29e83b1d41575280ff3471173f6f22635b218303ca5cdd", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "3e7cfa0028762178b3c03798d9a51cc0a9eabf55d5a5d08b7e61ac79c320628563fcfe55dd57", - "value": "96561873372353860312541511680" - } - ], - "outputs": [ - { - "id": "8288baea3cf4c9f00386e53fe9537151d6b2d4525892baf02e4020c9d3aee32e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1053653289732850454829465600" - }, - { - "id": "46d53251280758917afc8054b5e9c6b7729c7f02cefb16e6636c3316e16a2ee8", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1163421456674727670696640512" - }, - { - "id": "3534ca20f744539cdd3e6bb556e49831d4bb0597a7b442334b5f95ddb41bffc7", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf", - "value": "1132184958995360971083743232" - }, - { - "id": "6f0826b4b63548273008b047f7c5c2c3304eebe24edcb0ef44312f3372f2f817", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "19cc961f2ce4b663650c653b7cf1043a3b2fa1053d1eb36a6454b1059f80ff9a5d0a02bdf094", - "value": "1909125198039245632474972160" - }, - { - "id": "1a466da43cae4ac718460fd486947f594b6bb5dc27810894ab04936642242cbc", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1285994062580140428905938944" - }, - { - "id": "6e49e74eae1ca183d493461a3887eb47205156d3741eaa1b93b0a7fce640ace2", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2193588060379378441621864448" - }, - { - "id": "2ae40a02dda57483bc20d5dddc868a1d9c9beaebe3b1016dc2c07c6cd958e3e1", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3960342574964867721815130112" - }, - { - "id": "c5075cd91bd6960162c57139fd91df31eb79f263d789e934d08b3529adf419f3", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2", - "value": "1064564579166381904188014592" - }, - { - "id": "b1dedea4cb517e38f2f8a528651a25e750fcaa87a855411abe0be9bddcd573f0", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0", - "value": "1083385206698218890068361216" - }, - { - "id": "f26084d6aabd320a65214fb10b0d1cee02c57292e38c4e04e9eb63fe9664fafb", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3884147499619739159303815168" - }, - { - "id": "36caca0d73b001bd4f0e261b100b753b38833c85902d7ac95245051283498018", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1010597182087427283571179520" - }, - { - "id": "22588969443cb9c07591444c536ebb7bfa645e0b1dbf8e1c43c1ed9239c62d58", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1079180843843476592495427584" - }, - { - "id": "15f03779f88a5852931bd56b28abc9146164917e837e17d49a9fe5aa9ad0e747", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1313138296890198250125000704" - }, - { - "id": "7378d8236fa22533ee6d34df73691d1462d18459aa3f6adc90ff2ff21421092b", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3806717705803300059784151040" - }, - { - "id": "eaf83c61aef3fdae2618f696b65ae0eeba15354d45b6e755ee58f8e334fcb2dc", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1077572186302155474329927680" - }, - { - "id": "116ddc3daefa5444d034aa37e7f4456fb399cebaab2560a4f2de609bc8ec837e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1487309907286771540080197632" - }, - { - "id": "6d6d0ca20b3de1cd090c43f67472b14ffeb58fb0fd6879d0ba54805b38ab4648", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1097360787761822888456355840" - }, - { - "id": "cb9b1f12d6d9d9678157ef7daf63bf09b0953be171ac18032ecc0f3f9a5e9cd9", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1047309317557820682015866880" - }, - { - "id": "a4bea7d80d879b7cc0ee47791227769b8f3fb9455fb2dbcadaf11896d581387c", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17883053826573196464100474880" - }, - { - "id": "e86ae5f30a376e11df16648bc65bb43904201fc735a4a9cee6ffc16bfa85ccad", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11210920433418904800723992576" - }, - { - "id": "623d344d2dba2b156bcaf6e95a7e94b04fc62a1ad048a169e1490655ba675bcf", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1067477287944999206092013568" - }, - { - "id": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2848857595274758581309669376" - }, - { - "id": "b9081621f924971ed607acf41c860a138b7d300f7731b7f3aa1948ed8b064692", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1241796698615765600779108352" - }, - { - "id": "ecdfa3525599e797eef70e47182547196773bc18853b382ef0cee0eb22e23ea9", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1384213755580319413817049088" - }, - { - "id": "fffc9a5d28125489a26d6a6658b631f4d4353abe3bc10bdf421d95d124efbe38", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9379669096233368808299954176" - }, - { - "id": "0ee185b7b72fda9ce319fc3517ec4bd180af00be1e95ae26a4c24e2fe6296044", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1220448698488860394024075264" - }, - { - "id": "6b1a8655deb250ca99e13371cc9e54921785afe0c96f0ee994f3d7064dc8a907", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1011960496762286107730640896" - }, - { - "id": "08dfa6771270bedc0cee64bb467c62e522fd682e9039e5b239e9867bcd5a842e", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f20af5d03a5dad850bbde5496099b2464baa3e5278599f0002d37e091271a6ce32c6331f5a82", - "value": "1016441565810593952398426112" - }, - { - "id": "e5735dc2da3e6d2bd8eb4c0d2f26abe325b2f25729e699e6728f254fd1def3e6", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1182473396066795432086601728" - }, - { - "id": "f4401becb8aef7f051131c019806d2f6ae2f1d0a39815b7f6522dd2f79b4b56d", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1238049750274728493792100352" - }, - { - "id": "0830a19fd44247fe90a9f3232bc720e49b0a6209082e56043b35550fdff0062a", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "85efb7029d3597911e93cd449d3d8662adea9f7b3ee0c891f4e3fc95682acf4b84da20db2140", - "value": "1060417713073136983589421056" - }, - { - "id": "3cbf4162c162cc56ecbc1df36f26b14766c16e58da1128f68c528d837aa42603", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1277534897630390871954292736" - }, - { - "id": "db22db5ddee169ad9aa8b495b0b6a7023289d640f305fe14bbe346b3fe1a2735", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "c7d0bee29ba71b05038793f588186f004cc02725a97c4a44b1d80fddee24e70ed51f58f33dde", - "value": "1071728405427355378237440000" - }, - { - "id": "ef4f3d99494f406e35b7724df7136842c9ff430a74008f18b63e66e283289e77", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1966813265020078605775929344" - }, - { - "id": "3f64c4524c64d04f7a46186ab5329d9c75a8dfb8e102c4e750c543626853ac5a", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1085062182044538873971736576" - }, - { - "id": "b8af276dd2936fbdb07b0dc6db1624cefdd5528d1d9ad55910729ccbba0130d7", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f22946c0ef0c36c739fc28bd1fa3ee23375629eba3c584f77301918ee322f1841b3e2d70c692", - "value": "1074491499272127440242278400" - }, - { - "id": "98a209d34ff62fb9f3d68bf6db094837bcc66711befdf09dfa0d8f5496b6b7e0", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1261469461290651884849725440" - }, - { - "id": "a6fe5d57409e79fef37d7d4be616bffb933190ce796f55c804cc5bb1eea7e032", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "08e98457dfa7a9de9037d92c4c99ef90dfc76b1ba93181bdb9214392879582d5c3a2e6c80d97", - "value": "1089051178163842957850181632" - }, - { - "id": "6a9be10994d1d54c3138e502eb0f84a865a0bee08d11b7020d44f018a7b66591", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "31a4c8ea219a9a48cf078ff7a819a34ef5da2cea98b7d68bd6de4bdadc3f5f0126a682cde5a0", - "value": "1044910802351034860485738496" - }, - { - "id": "bb2459df64d33a34de6be57cfe59501ae9398a412fc1ad4896163bdd62f13c09", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "b48373ccfc13e21cd98b6f93db0792a4e374d447052a0489cec4ee9fd1fef4424b763d741395", - "value": "1013762657131118008745852928" - }, - { - "id": "567e5db1aed3162bcbc0cb7807606ffaf3284bdff58fc6ba0b3d9f2957602fde", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "2e4e8d9358e7acf1ea4eafd72d02f60c638d62ec8e543eb19a37686accfb2b9edb98fdef22e0", - "value": "1066712976118769466476331008" - }, - { - "id": "762de0fd84fcf203e8d972d7268b622bb010408940b0b7ab40fa77e5ad384eb4", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "f606dbc6986ecd7cd73eb4388aede5194b6f2bf5b0ecb22dedd20477a4eb52bb8dab5665a3e6", - "value": "1053900750332928045607419904" - }, - { - "id": "4edc3f998e8b23798549c4eac01500bd14b263f07d63a983b6eed945c37d4812", - "fundtype": "siacoin output", - "maturityheight": 218097, - "walletaddress": false, - "relatedaddress": "6de1880d7db09b705501c0633d2010ddd89026621dd79eabc34ff14db03937bcda1b68b9dd81", - "value": "1160847069069425633755004928" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218241, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "214800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "ksV2EwRQgytqU6FgM0BdHcKPUVjAXN2GFLDVFH0gqEo=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1125293805200215868818063360", - "unlockhash": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac" - }, - { - "value": "1178514086777621629458448384", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1003330564340584038393577472", - "unlockhash": "1d0692bbb0495151507e66340fcd4b9094a7a0f4f6042269b4eba4819ff0805135a99b4c78e8" - }, - { - "value": "1452318666109239606405758976", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1096963042255024259019571200", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1041543692753936588023332864", - "unlockhash": "e73c761fef8702fce8106af7b0eb8a7c38a68781c9197317e8b4e695c64b5300285fa73e7f7e" - }, - { - "value": "1160529066231580295671316480", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1087437932085650112505708544", - "unlockhash": "4d5a77670aa7e54e5ce1f690a00511293742d247330e5a4bc2821d896750edaacf67caf428e7" - }, - { - "value": "1100266406552682689645117440", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "1170219435832517740508217344", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1166018034519327067793522688", - "unlockhash": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f" - }, - { - "value": "1073550919133829118722834432", - "unlockhash": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c" - }, - { - "value": "1114780262425880431500460032", - "unlockhash": "b17b7f5fc1bc6479911b45fffb266c63761521145a5220d51c7faf386b88870ba0cbb6c6921b" - }, - { - "value": "40855785933312089836404867072", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "2650160611674334196043612160", - "unlockhash": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290" - }, - { - "value": "4871016871074301795035512832", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1203933584668283496877260800", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1819214773018404534760767488", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1641842349566896916874133504", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1322079386474195051199070208", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1129176440628405934745452544", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1117446659984056199157563392", - "unlockhash": "36ad9ce3c351f18f597530bcabea593b0675627e838b46586e97823cb69ac964a9c870716555" - }, - { - "value": "1137423743732350276845174784", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1197904563543574987365416960", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "3191326875194549433716965376", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1279472631979190808759762944", - "unlockhash": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092" - }, - { - "value": "2117374278120490115933405184", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1058818407524237279397019648", - "unlockhash": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f" - }, - { - "value": "3637416569346014119242760192", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1152877277840411293233709056", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1219168114364233611480137728", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1071086137446966293766602752", - "unlockhash": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375" - }, - { - "value": "3804035395671904221050961920", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1004254699681774118516162560", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1161540346701811449452822528", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1027927776105898159347793920", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1170706914241447696095248384", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1257105812409336759872126976", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3688838324432342068244774912", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1010711582839755035614642176", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17328078651235867464170471424", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "2025029856077539312998023168", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "10588837272891638120970190848", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1057501177062066602345758720", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2762258971256558438601195520", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1175266673484588113698226176", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1375283480542343670045605888", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9169701750106184273637670912", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1278974525784216641211465728", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1046502161676014812966944768", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Ppff2JKIeoRmcd0Uyuwyszqh/V6NsksWlp+AuvldePj5FdhcMalf94Izz1bU9l5jE7+DnuJBFyIbx3ShrTzKDQ==" - } - ] - }, - "transactionid": "6033584c6f7df7d7c923953f10a5ac458b9aee8266702ca2c3556b3a26dca64f", - "confirmationheight": 218103, - "confirmationtimestamp": 1564468388, - "inputs": [ - { - "parentid": "511598d72d48a5ac802f84170e58573a302dafafce8b96cea875a3869d0ef78b", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "fc992f4e5cb3c1df341692d454e7f788625ea52a8c8bf4cc47f72bb623bd49563bb0eb82ace9", - "value": "150377086495912362586145210368" - } - ], - "outputs": [ - { - "id": "6f69f1ef02eb3a98347b66c2f2c7e035c0fb42885b9c8066e46987042eb5b0bd", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3582077bcbbbb351309c6b9adab3a04f6aa567155b3cf96fe50c3f5abf2b1a7a9ae5dccf38ac", - "value": "1125293805200215868818063360" - }, - { - "id": "1fa8b3cbfad6ee86a9a2979bbd9311245212e6978b8182557af3d150a84fd30b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1178514086777621629458448384" - }, - { - "id": "2d540aa3890ee80e8629d598f045920b56692c2703d4f51c9d8f4ddc5756ade7", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1d0692bbb0495151507e66340fcd4b9094a7a0f4f6042269b4eba4819ff0805135a99b4c78e8", - "value": "1003330564340584038393577472" - }, - { - "id": "a0dbd4c15f326944c20ad1b4670833b71f0d349192a198f7910a1dd8862bb441", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1452318666109239606405758976" - }, - { - "id": "2cd1d9cf1c6e5cd704db3178b081c66e5973f13da5742907da022c4723818590", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1096963042255024259019571200" - }, - { - "id": "52321b9271d261f290c2396db6e5255396a01b45cc4c615345d723144fa74a5d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "e73c761fef8702fce8106af7b0eb8a7c38a68781c9197317e8b4e695c64b5300285fa73e7f7e", - "value": "1041543692753936588023332864" - }, - { - "id": "7d54698ca159a016abf5c2687beb0735b8d3fba6404267edfecdd37f154e4dda", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1160529066231580295671316480" - }, - { - "id": "f95e87a6978c8cba55ff3b5fc3ce4bad621dbf043f1bcbbcf148b5010d273215", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "4d5a77670aa7e54e5ce1f690a00511293742d247330e5a4bc2821d896750edaacf67caf428e7", - "value": "1087437932085650112505708544" - }, - { - "id": "566c3588765349f5610e5e165f0e3fe4796ef17dd935a5e6bb990da176f3b2d1", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1100266406552682689645117440" - }, - { - "id": "87dd6bf57200555608853a0fbb4fe59b4d51211c49798da53fb52a1555825d01", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1170219435832517740508217344" - }, - { - "id": "6809d704a5b092484f174066d678783747fa545c63d1656662c6feeb52085f9c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "2fade3b88b08304c72f37d4b19a871d5ac952230aaac6fdad310d89997792465e110038ea62f", - "value": "1166018034519327067793522688" - }, - { - "id": "a13b5f1bde91a19b4cae3b00897258c3061f21ab042a03768266949101a62fa9", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "fd1347491e967cd38c46d946ecdc94bb6e917afbf4455460afcb3653b4adeac880de58c6691c", - "value": "1073550919133829118722834432" - }, - { - "id": "147f12412fef7c346c9e6140002d33a72ce2c8d02380bed7838ef388e3f4b828", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b17b7f5fc1bc6479911b45fffb266c63761521145a5220d51c7faf386b88870ba0cbb6c6921b", - "value": "1114780262425880431500460032" - }, - { - "id": "fbeb74b10f5869ebcd4e553990a68632611dd4fd779622cacf87253f0af48156", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "40855785933312089836404867072" - }, - { - "id": "651608258425c53deeedfce449ccc89f337925cdb81836ac20299392662e0676", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "0a86941e505c27b8be79db0e44edc0b486583d474e16e2edc7f217a549ef708fe95f553fc290", - "value": "2650160611674334196043612160" - }, - { - "id": "e09bb0cb4d3a46b29d86b9021ce1f2553a260fead99656ba55baa788c49d45a8", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4871016871074301795035512832" - }, - { - "id": "e9d8ac2d7c7b878ae3941cc3d247f3175f3fad0c304c86b7a8c3aa270b24a9ce", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1203933584668283496877260800" - }, - { - "id": "45e79d82f388411c8b06462e6c863893eae3c22bc8705c979522aab6b7e429d2", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1819214773018404534760767488" - }, - { - "id": "30a43e5292b1df9ed25e5a0c562edee4778f70cb89aac7c69a743e19f715b260", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1641842349566896916874133504" - }, - { - "id": "03c5b932bb97e5dab60760506b1b897bfe44e8c661d3d10e89472bb621790c82", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1322079386474195051199070208" - }, - { - "id": "ed025d994fa7eb09c1518f77779a41879c4235d921817500ce4aeeafa968389c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1129176440628405934745452544" - }, - { - "id": "529c59c573cf32780eb239ae44e1bc5eb994619b2dce770d182c099fbb0e8ae9", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "36ad9ce3c351f18f597530bcabea593b0675627e838b46586e97823cb69ac964a9c870716555", - "value": "1117446659984056199157563392" - }, - { - "id": "e241f1ff79e93aea2fea2768cc0718138a21e0f97c99776514a037d33a0e6f75", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1137423743732350276845174784" - }, - { - "id": "7da9786470ce3e6953661b010e36126602ce8cab0076a3b2e9ba1065cbd35375", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1197904563543574987365416960" - }, - { - "id": "ca4b3af90fb38e915fefeec715a4dbb374d12152d83db68861b98af66a01cb17", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3191326875194549433716965376" - }, - { - "id": "50ed9358ab0f2eb43dbe725bf3714828220ffd830bc7347888d0f016b5064c0f", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "aac0db105c68c405308ac8565d0e3182f095d88347d5a6676cb3b53ac6053988b0e7cb371092", - "value": "1279472631979190808759762944" - }, - { - "id": "ae221126238034ba91864382d9b5c200a5f37c3c3d45d712464bdc767e80bfde", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2117374278120490115933405184" - }, - { - "id": "5d90f20ed881a823cdd0153c75343c426c3ae302e2bcb3dd8be665e7ef8a779c", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "2fd328c6a857b6623bded48a610b8e920739a0f228cb06987bfe4d383f9ac7c5a39edaf16d7f", - "value": "1058818407524237279397019648" - }, - { - "id": "fd965d24c23816e27c94055204c16c3249f6bd3529482e1bf47fb9f8166df636", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3637416569346014119242760192" - }, - { - "id": "25249b19e679aecb5bfbb00b1d701eac7b12c472026653f8b72e08416bcf599a", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1152877277840411293233709056" - }, - { - "id": "98f9e5dd542b962ab0ae65b80518a406fee31b7f8ed30dd93415075e84dd5160", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1219168114364233611480137728" - }, - { - "id": "9099a875f01e90ff1bf5634ee3a681da62f8931d277d7fd79762ea1c9f9dc896", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375", - "value": "1071086137446966293766602752" - }, - { - "id": "30b4a79ae9af4a9342b2179d5a95811c27fc97a98616cc2c932ea4fa7240cb4b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3804035395671904221050961920" - }, - { - "id": "90c6251a15d899c14a43f93d36ea801da3f073798d263d412a51a6d7bd0ec82d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1004254699681774118516162560" - }, - { - "id": "cac87416f3eff3db68c9db366000afba6fc63d0d500508a3fbb0b2e9aacb26a8", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1161540346701811449452822528" - }, - { - "id": "94b82616ac550be03d66788655ada5b1c33664dd769350693dbdd1ed3f82e615", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1027927776105898159347793920" - }, - { - "id": "ae28fbacdfac8d1095e4e7fdb9be81b01af1d61b2aff67720082b7d365554475", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1170706914241447696095248384" - }, - { - "id": "1e3eff0162e26916f8706a4895d9f2725f5ebd69105a7f6ec341afa7cf7a808d", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1257105812409336759872126976" - }, - { - "id": "029b592a7a7f8ca92de81f11229daf954ef043180e04d7c758f07ae23b4b0856", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3688838324432342068244774912" - }, - { - "id": "a6fc31247bbf799e213ab3007849a6bd772d4c260b845a1024761bbac2d90b97", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1010711582839755035614642176" - }, - { - "id": "6b3ca9bf723549e40ab489810bc50a1b6162eaefdf34eeb26ab9d0255747f03e", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17328078651235867464170471424" - }, - { - "id": "ae960f7febb9729d8ec86031482727ba610e552a88b4e1cc9a158e4c6b82366b", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "2025029856077539312998023168" - }, - { - "id": "2997581b6ef93fbf28fb499b5ce017c7cd84b0392e74fcda667361cdd32d1865", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10588837272891638120970190848" - }, - { - "id": "76c56a5c9cf4016e104612c2a1096eaccbc3023989f81f71ca9d01b6a0b35b45", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1057501177062066602345758720" - }, - { - "id": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762258971256558438601195520" - }, - { - "id": "c21b92cd53ac9e1303e84893611102285c4796b9fc27c8d4975864863a279657", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1175266673484588113698226176" - }, - { - "id": "97df2d6a1e4ae09ca63945021be7a3d367a1937b03b168064235957dc674362a", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1375283480542343670045605888" - }, - { - "id": "4db482c63bc2eb6b19b676c52317b38826e65525652cd80bd492fd8a0648005f", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9169701750106184273637670912" - }, - { - "id": "b85eab1033ca0992793842a030bc68b50741dbca344b388cdce86cf34ca04bfe", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1278974525784216641211465728" - }, - { - "id": "13e2e8cf227867981076e6e0c917b5fb992806b375b0edeb39b65835a882b6c1", - "fundtype": "siacoin output", - "maturityheight": 218103, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1046502161676014812966944768" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218247, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "GuTmX2H027bxvTVoqyzbZh4Y4AZr8abPyZofLqiUiRs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1159076386314088845378846720", - "unlockhash": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f" - }, - { - "value": "1109640650410846269521002496", - "unlockhash": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025" - }, - { - "value": "1234650922403788822531801088", - "unlockhash": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff" - }, - { - "value": "1304641723097514452692500480", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "2155724077969629536619331584", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3879587576253395868384755712", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1445182666690065027033989120", - "unlockhash": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425" - }, - { - "value": "1225770190155112363818221568", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1098822022183038777909313536", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "1063160635705645945760382976", - "unlockhash": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1" - }, - { - "value": "3760772383449422819099672576", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1094435822049708065624948736", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1297192643149305938890981376", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3621871505808503642601291776", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1004816349955352846456061952", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17911892887019770216204730368", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1018780856035699078205538304", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1312280354009038066622136320", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "11130912057198966888946728960", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1047093550294369558413180928", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2837128019724415612865216512", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1214315546631983519955419136", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1401316863149207904403324928", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9611692290037201706520936448", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1040924024799886582531096576", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "1053866460505388990578032640", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "1092315866462351835873411072", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1108186192047690304349077504", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1046980793036858451450658816", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1028678871265872738169389056", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1136478408635461648273899520", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1010550551986605478615023616", - "unlockhash": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a" - }, - { - "value": "1022113098655178177592164352", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1119230284132663892781301760", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1093030830747186253006110720", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1120134554899899471086092288", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1204613899364433678251851776", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1011731867599239939913121792", - "unlockhash": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a" - }, - { - "value": "1016966898579064680600698880", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1279360265392815701642706944", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1025577198013328202709860352", - "unlockhash": "471beb9f8cd514f8fd088899220caba37818091b4c689f17a2ff6a2519d85cde58b5df5e3e9e" - }, - { - "value": "1936822413870169218323841024", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1062742818869332565269938176", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1037088460165765120425984000", - "unlockhash": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e" - }, - { - "value": "1096007618187597456008675328", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1104655831089865314851356672", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1025225177488788976480485376", - "unlockhash": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["229200000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "TQztY+Ttc+KZGM6sHacG9lc7/PF+yVEy2mW5/o/imwlB79IFNwl1JQVXV7WCRuTwoktehS/5r2pRTvRtqUnHAg==" - } - ] - }, - "transactionid": "71736ced4b3ca6c9abb94c2d8367e2ad11a300b3c5cc68ad1b10be1965239c85", - "confirmationheight": 218108, - "confirmationtimestamp": 1564471925, - "inputs": [ - { - "parentid": "c12a6b56ff3fe9b15dbfbcc34d969d992934508cdebdadd87c0db8f4f12b4421", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "0a815f8151fd94f4099b17138fa94ed79f898a8dca401961e9745f9babd0dc8798b5f10b09b3", - "value": "99614269565491516453245091840" - } - ], - "outputs": [ - { - "id": "740a5f861cd68ff89c2af995a6ec84af5cb0092cab3d296334e35865b9e90a27", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6a878e8a4e1dd7f6e2c009e1047521e88db4bdbd4daa28e221f75a8059943c38197ee9d16c6f", - "value": "1159076386314088845378846720" - }, - { - "id": "e6cda9f3635c7d1341645f41e62d8d3b0e108694e6745b9630618f0feb20cce0", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "185c1cb4a9347efc5ec42a46a48834b82f516bcdd2cabb951ecd10445a14518646a2c1305025", - "value": "1109640650410846269521002496" - }, - { - "id": "5a5667831a9e0f84852e1a67cbb65c4ef67e054d531d4905de21fb731d8c4096", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3ebb7ba97b435fdd6090fe9dd3ec09e286d5f40ff713958ea99bbc1e3b9ca952a71105a496ff", - "value": "1234650922403788822531801088" - }, - { - "id": "f95165eae2595d0119abf50cbaeaa7b0856190fa7ba0bded3b00a6c218b1cd92", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1304641723097514452692500480" - }, - { - "id": "0c8210ec1069ee076818fb29742c4f5b0a660f5d5e099b00be06e457c12f84d6", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2155724077969629536619331584" - }, - { - "id": "34d8ed257f33b323c2b1d7736b2e6d7e32894c4a3d81b960aabfb607eec5a3ed", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3879587576253395868384755712" - }, - { - "id": "0e1b380c7d00cc5e244b7ba77f4e420e65184d691a2c2eb47772377707cbf135", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "04b1906ca4bcb6be2c79b4cc05aafe3d2da493bd1a83df02b4c01cfc1ee89b3681c50c315425", - "value": "1445182666690065027033989120" - }, - { - "id": "3272b734b2dbce1a2f94fffdce18c66d16bb7d5fdc1be27bc08bc06f545d5778", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1225770190155112363818221568" - }, - { - "id": "635787b1c8a1a0bff5e25a72da740ceeab597f23476560e2115c3e395d6a8df6", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1098822022183038777909313536" - }, - { - "id": "fe4c550ce5a85671d7cd6f8885441af0e424c366e526275b2baf7da29c8cc54b", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1", - "value": "1063160635705645945760382976" - }, - { - "id": "6e5f258a6c0581b9c82589bfafbe4003e25e8c1c0cc0ebf3f49fe05e66ec3190", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3760772383449422819099672576" - }, - { - "id": "ae953d3debb6fb36bceb078b031fafa8e15b07f7c800c84fc483edbf5f5c03fb", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1094435822049708065624948736" - }, - { - "id": "55a87b4e25fdbf7e8c26bede4d8a4a7d155f99c0a1de199b3b964f787c537597", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1297192643149305938890981376" - }, - { - "id": "d32d543916e5852b917e6c4017a3c73b6cb472e3b0ee2d94da8d6f2412a6b416", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3621871505808503642601291776" - }, - { - "id": "77665517e5b1fef2c8b6bc1db59771c59d947ea9f39f0cd4d1225978f76893a3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1004816349955352846456061952" - }, - { - "id": "d857739cbc5bda435448424dff0027b2f35691b84941b383430fe64da3215a4e", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17911892887019770216204730368" - }, - { - "id": "10b7e408351c0561edd1c43d2f9882417c357ff1a13b1e8c2f2c34293aa73a5b", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1018780856035699078205538304" - }, - { - "id": "78f661de9812498aa9fe36bbbea1005afcd8eecc5509fcf733f00d128eedb169", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1312280354009038066622136320" - }, - { - "id": "aeda817c101099b5fcd504cf24979e5ef2d679600ab611f514fc0e794bd59718", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11130912057198966888946728960" - }, - { - "id": "40116d9b75733b4e5798dec2fbab2e4992661e02f2b78cd585f925d6dac25695", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1047093550294369558413180928" - }, - { - "id": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2837128019724415612865216512" - }, - { - "id": "fe657d15965d06848eb20d30f4f58fe1ff2e0ff9161984ab04264d3859d63840", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1214315546631983519955419136" - }, - { - "id": "69a2cc4f090ab99e57b943e2071875fdbf9e2065dc6166614340d3596fedbfbd", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1401316863149207904403324928" - }, - { - "id": "d6f368166e90f5da1cb650c8aed5a9633eccf64869c03b8edc7868de00785445", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9611692290037201706520936448" - }, - { - "id": "5e81d0043391da24527f59de299227bbff52257140e0797d41cec8db92d65138", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1040924024799886582531096576" - }, - { - "id": "95654c80bfb292cdc1f6c1f10172b6d400a4dd7a4d55b21081ce3ce0cec5a489", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1053866460505388990578032640" - }, - { - "id": "742f91c8cedeb76bf131a2c59e34d556dedccf85699e11030b4d108f27775fb8", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1092315866462351835873411072" - }, - { - "id": "a34edac79be3b43bbb8bc04d9b9a2503f9ba510e4f3f65140f56b98b866f0f86", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1108186192047690304349077504" - }, - { - "id": "68daf00ae24072bb4f992d50898a729a384deee13ddfbdda2b632ec7ecc18b22", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1046980793036858451450658816" - }, - { - "id": "496f74571125f528f31b20355707c9c43f71cb7bd4bab4d4448b816360a49cfc", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1028678871265872738169389056" - }, - { - "id": "a31a54ca09ddbfca31b1f0e62d0a7bf8be904bf2cbbf7ddf699e12e201eeaa85", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1136478408635461648273899520" - }, - { - "id": "a96b92d082d2cf9d259d11f87ce4153fa4e2996b96fc56a639df3ed03fa30ea2", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "16691797078ebae9d497c4210f2aa858505df5cab32a67f70299e8609bdc72bd6cdec46a2d0a", - "value": "1010550551986605478615023616" - }, - { - "id": "609b493265178a9c3bc9cb2ef9a6449f3a42596a27c14531f8e12168c2800f59", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1022113098655178177592164352" - }, - { - "id": "81993fd5305088921bd9cf3ec1b4b3ac7d03846d40ea0ae3281a7b1af6d1b729", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1119230284132663892781301760" - }, - { - "id": "f0947cae3008f07ffe3fefa6acfd380be1f788186d87c2b7ca8265cb502dd5e5", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1093030830747186253006110720" - }, - { - "id": "4a2c44f3764544dd68cceaf75119a6e5c4c8aed7008f64ce6df261627f3af8c3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1120134554899899471086092288" - }, - { - "id": "6cc0820b829f366991b78ef02bd5c522b2c9a3ea6a4bdf917cfc484db2d26c2a", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1204613899364433678251851776" - }, - { - "id": "9c8f93f83b55a74c007c4cc335e4f58449f3195fbc7359feaf93eb99f80c4512", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "ebcd9b76dcf9e1775fb07655e2cbb0186293ef2221d65e5b9d117fccb303eea420f6f8fbaf3a", - "value": "1011731867599239939913121792" - }, - { - "id": "7ba0bf994db51e772aa827580c44587b19ef2d6ab6bc9fc1f855a4ede7f289d3", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1016966898579064680600698880" - }, - { - "id": "c53857dd25d972bebe44415110804d3b29d6257276053ecc2c62ceee16f72cef", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1279360265392815701642706944" - }, - { - "id": "12e8661525963d05fea9d7b7353372f31e55d742adfd8727b7f6bd43a5ad9774", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "471beb9f8cd514f8fd088899220caba37818091b4c689f17a2ff6a2519d85cde58b5df5e3e9e", - "value": "1025577198013328202709860352" - }, - { - "id": "1106f25fa9c881d0d96a97ceb8a3f8f405858902e68e94c3f78192f79dd68e4d", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1936822413870169218323841024" - }, - { - "id": "feb50400c9738113d2555fd8aa13cfeee9729195257fcc5dff994e9a4d4f2782", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1062742818869332565269938176" - }, - { - "id": "4cb62b4c939b61a37eb863501c99e3e089514eacef3baf0a2c55afa5684ea946", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "d3acb2a0120c687918bbbf666ec76dc414b165c98f465e188f9a0ead6636d020d690cf57fc8e", - "value": "1037088460165765120425984000" - }, - { - "id": "c0761bd5facd76dae6765d30761a9b8f39e1b6aff2b2dd3982f85fd029b158d1", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1096007618187597456008675328" - }, - { - "id": "aebc8a957745e78c29fb342242448c58397b67c094b1202f51c42723a24c4c6e", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1104655831089865314851356672" - }, - { - "id": "7d9a864873d642d3e870f271f60e40651f4fab323e7048525a8f1311de276389", - "fundtype": "siacoin output", - "maturityheight": 218108, - "walletaddress": false, - "relatedaddress": "cba360d4914d2371c8ee7bc41781ed408531fe1c9966f4b22a774582a2eebe6d6f08e937637e", - "value": "1025225177488788976480485376" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218252, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "229200000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "b9rjw7yaD8h4dQDY1juwIPSeTJ1xSEgENMqU+T8BVmk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1430804042907539157733605376", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1112140701033866522252017664", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1198277321289125511088308224", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1031951127465267498727243776", - "unlockhash": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc" - }, - { - "value": "44438688546134069948589277184", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5258368634024617148023832576", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1251989211994357062067814400", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1042714198295885929949167616", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1218823023736843399116881920", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1049380946940951811946315776", - "unlockhash": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba" - }, - { - "value": "1871624920703732155336884224", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1597504427460100368253321216", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1062170511957143763172720640", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3423343101303320529562763264", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2183083500453917374153752576", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1028190533004865042242338816", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4102072721239662892551241728", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1417708242733933191751532544", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1299110814012186662442893312", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "3928416482675036271591555072", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1038724165800481886489214976", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1394121005744741854218289152", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3908891025248104991902662656", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1159288462927028134292750336", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1461937193618965596817326080", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1105913206753479928592728064", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1079084423918189547895128064", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18592865078467267354379157504", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1081134662032379474729762816", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1097115676460622377637838848", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "11823667085943209972390166528", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1088314469480938592578568192", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2988507563824936148835237888", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1032564365264044623286173696", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1283433300534659956869169152", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1435787491066272301092700160", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9962939397343114023414005760", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1207354257223422533756780544", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1036240739360157068078252032", - "unlockhash": "fb9b561fd6499b1ba8ef520834d5b87b316a64725126f5deb34250b86c51821230551581074d" - }, - { - "value": "1084703826169873277138501632", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1020419990493471376870014976", - "unlockhash": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6" - }, - { - "value": "1177513498678580184370642944", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1461986176189940694939336704", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1009048755626514749537484800", - "unlockhash": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52" - }, - { - "value": "1006219627679122316468944896", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1079833642154070308940152832", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1914554245289358233239027712", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1880317357548108646914719744", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1919832490989768470459056128", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1091915030318964290569109504", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "HkK+kkhnkA79bR6dAOuZom7ahoT1hAMUW9m2zDgfLa/pmx4LKfy8QE5suz2lSYYogC1kjv/GIkkq8vK55Jv1Bw==" - } - ] - }, - "transactionid": "b6e8a3b47c4a65632b29defccae1356726dced8e3d4612663b18b90954bb40bf", - "confirmationheight": 218110, - "confirmationtimestamp": 1564474593, - "inputs": [ - { - "parentid": "f4976cd4c233ea8f7863e35647ada9e0a77f40b9aadd684aeeed678714116854", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "a46a9242cdf19722ef0ab98d4fb1b231f9830577ed4d001f5b01a4b3bf79a1f1106be38d1eff", - "value": "159370831221516211157256372224" - } - ], - "outputs": [ - { - "id": "63482259d6ecbddb991bd0ab8c30320cfec353416802ad249bbbfecadaeef05e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1430804042907539157733605376" - }, - { - "id": "17090d30bc35dd07ac412ffa2e11c15bad9c266c22e16f3094c9f7e9755ddb14", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1112140701033866522252017664" - }, - { - "id": "9a5f7d6b02bc9ebae6e3b079cd05bedac3e5fdedd0b963e8c9da783c7856d62c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1198277321289125511088308224" - }, - { - "id": "1cee8fbb2f6905bfc867d523ea00ec09c7fae8413ac1454614de7dc1aca5338e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc", - "value": "1031951127465267498727243776" - }, - { - "id": "4c70da6af58e06f420077bac8f28b2f0a320ed6fdeba8832da4ad767dbbb2842", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "44438688546134069948589277184" - }, - { - "id": "b0fb5fafd6a7ce2517ecb848df76bb920f92af2764bf85f4ea43de7faca92205", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5258368634024617148023832576" - }, - { - "id": "87d50de45f22edbf49f5d1109f76460b3193ae984ba2ad6dee83d7354639cb5a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1251989211994357062067814400" - }, - { - "id": "b25a446eb5bcd7cde81f474c39f13600e60220507f39e19941567ff9a01c465b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1042714198295885929949167616" - }, - { - "id": "65f47a7080a25c88f0b0516c2b187bdab9ad92181e04b3d0d5c16e35aceb36dd", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1218823023736843399116881920" - }, - { - "id": "3a05d082a6e086c89c2b5648b66dc400af6aa7315543b7cad7c26ccd81f441a8", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba", - "value": "1049380946940951811946315776" - }, - { - "id": "63d25f6e752aaf1e583837463443ef4381832b7a336a62873a523bbc06c5918c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1871624920703732155336884224" - }, - { - "id": "2148a748db369a4bde5b48bbd0c1660730a61b0bf959797f62b77bb884c5caba", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1597504427460100368253321216" - }, - { - "id": "cf6ba25beb8e6953e4fdeec9862ac244059e3a277122de7c51ae3548a8562584", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1062170511957143763172720640" - }, - { - "id": "7c2040662a6e76422a691a34a0752e400082ed60c6292a17113955a027bbf968", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3423343101303320529562763264" - }, - { - "id": "c8a41d5ffaf8456845539d254cd08cd235f51bf11c65817b191a12eae4474883", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2183083500453917374153752576" - }, - { - "id": "9672c8c7325c17f37509ccd0397f848d0d9bd3073a4597fc874064dbc6cc546a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1028190533004865042242338816" - }, - { - "id": "a916353807d23853555b0300e4f26c76e23048720fdd2c7b614ee319d0cab2c3", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4102072721239662892551241728" - }, - { - "id": "1da4feb00487fd82b786881954f2d966476f3f8f77422fd7d81fff827718876c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1417708242733933191751532544" - }, - { - "id": "15469404e107d9fe5663e5cf3d7748b3728115e371759ea2c3fca4c0564b7d49", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1299110814012186662442893312" - }, - { - "id": "21388a6c71999dc1f6ca239bf5072382d176a750e7b273a7af27a0fc813d3691", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3928416482675036271591555072" - }, - { - "id": "6ac4723daa3ec8e7339bc11b3b882258d9780959085bace54d5174f515f57ed0", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1038724165800481886489214976" - }, - { - "id": "4f07b668ad229672494d6b12c08fe26f14e280467736e480e463e61a73be1514", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1394121005744741854218289152" - }, - { - "id": "fff789ed2bb8975ce342c39f06781c45d79baf1b607294d42052bfec5ac6018c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3908891025248104991902662656" - }, - { - "id": "155db02af8ec34eeb3f1d075e849a07fa21d71428b25a267ed37e66d352a6c69", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1159288462927028134292750336" - }, - { - "id": "662128b7579019606eccc968a65b009834bbf8e2239cfdf27ea3a796f82723e1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1461937193618965596817326080" - }, - { - "id": "d0d2db246918a538109b1d4d51b712ae7cdec9f7bffdd78f9a5dcb4111365c3a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1105913206753479928592728064" - }, - { - "id": "4cbd532c4f8b0f084a60e00e7632f0623aa04865608e826cd2d3f704aef0941b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1079084423918189547895128064" - }, - { - "id": "26a185ce774c82b1703b56bd35922ed2e4ed099d09f5000df7abc31549a9ee72", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18592865078467267354379157504" - }, - { - "id": "932c9dd1e22490d45c30fc52ad66ca06a4419978105d40931748991f11d36fff", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1081134662032379474729762816" - }, - { - "id": "da0ed7e15533b0f66f19a9f741fc70b4a011ea7d022a4489ea4af0859419ed58", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1097115676460622377637838848" - }, - { - "id": "15c3cc8cb2f1849efe00445b08f99d923c89a4aeb8e232ced12b0f602c08aeb0", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11823667085943209972390166528" - }, - { - "id": "2041deee228215374bf966380af0d829ba008713aed5baca1f0096434f9e3209", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1088314469480938592578568192" - }, - { - "id": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988507563824936148835237888" - }, - { - "id": "6bffa1f0c701403df686d6f1b27972846d0bd5f5267cb6782dd73b00f3b28e2a", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1032564365264044623286173696" - }, - { - "id": "41c17f53fce64945e513bb8fc503406b83a184b8aea599279703a01adc73bcdd", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1283433300534659956869169152" - }, - { - "id": "762c1bf4024f419c306ab067a1831001713ae147101a928700b6659d4ee46a70", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1435787491066272301092700160" - }, - { - "id": "6bc3e29fec5d4aa6209b965eb87c5e02635c10fab342a15d30b8acd10a45fbc8", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9962939397343114023414005760" - }, - { - "id": "8b9eb79c02e9d4f60e50b642f410c0fa572906f1c1a411af3944eaeedb19d34c", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1207354257223422533756780544" - }, - { - "id": "a90ddbb519bf66cea57a98da49a9972a222279cfade7f500313c14ab28110bc7", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "fb9b561fd6499b1ba8ef520834d5b87b316a64725126f5deb34250b86c51821230551581074d", - "value": "1036240739360157068078252032" - }, - { - "id": "eb07538798e3371d4247bad88507f346fb943f530c4a02a1fc58cc19096221fa", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1084703826169873277138501632" - }, - { - "id": "8b3083961cf6c0fa60d5b6f3f351f0a606f574b9ef05d3a0f57f4dc0f4b544e5", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "4f590c4da501e42e63e8ef511635db6ee6b2642f676a695f967b025d405743ae4240fe346cc6", - "value": "1020419990493471376870014976" - }, - { - "id": "c80a3af6107e9649970d569efec5067bbee84c190bb6bc9ca0693442f7dc74ae", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1177513498678580184370642944" - }, - { - "id": "b9067a0f2d33b5a47c3d3714ad12b83de7717aaab1fe6c4417c4813ca33dd086", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1461986176189940694939336704" - }, - { - "id": "bbe1e74394b22572dca8f745d14a981283c797a5fc6e2f7d00c537c51199049e", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "0af6a2ffda7762258b9d6b7bda0b8e188a324ade6470de57bf5bb62fc8fe6432e8911cf6cb52", - "value": "1009048755626514749537484800" - }, - { - "id": "b8be69d7051501b26a70bd91b8cf138eaa8c11c7bb5f5bd1c7ca213bcded0437", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1006219627679122316468944896" - }, - { - "id": "0b5b3c61bf8a5d942b4f709b35d5e8855c5cc6d50a15898a590c84467b4472f1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1079833642154070308940152832" - }, - { - "id": "51d3087011460d017dc9fc95bbc85ead23c9fec31ec98b2264b869dec32233da", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1914554245289358233239027712" - }, - { - "id": "f2535556ddeb89c831870da8ea112f2e47260807abec75c71d0cd0c97dd40fb1", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1880317357548108646914719744" - }, - { - "id": "f0cdd71e136ac8d4fa4ce0aebf4494bd90ef4430836cb2023c49eb0b3b660eb4", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1919832490989768470459056128" - }, - { - "id": "4ac9e011dcc6e49c0ff2fdc0510ca26f560d36d82f018f08cd6d95e2f6ce487b", - "fundtype": "siacoin output", - "maturityheight": 218110, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1091915030318964290569109504" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218254, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Cw1b4Uvq9xQsqX80Q0RgwORtGTtuyLrX/EO7M9DuDlc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1067103623415482546621251584", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "3606850898532315041009500160", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1200604817451498664286748672", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1142471210281919286378233856", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1280561008164527800120770560", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3689358102071416957335240704", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "17383949398346429862642712576", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11131753814571289675674157056", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1066051785935992670377738240", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2820108406750158796917571584", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1188218202438719110467551232", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1331191372656907899006615552", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9580365513576136952378294272", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1056958841228133199426027520", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1070725988217865189334188032", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1249866162163007899448115200", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1030515649900745852563226624", - "unlockhash": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a" - }, - { - "value": "1024714419819799909798395904", - "unlockhash": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3" - }, - { - "value": "1034191559435645461367422976", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1082528127038452761667043328", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1271744157946098301183983616", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1053408299151753070937866240", - "unlockhash": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf" - }, - { - "value": "1170407261310609221001674752", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1277344533657219609850281984", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1095081077372849209696321536", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1054844583128988610840887296", - "unlockhash": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4" - }, - { - "value": "1110007066570522996324433920", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - }, - { - "value": "1033974096386724197077450752", - "unlockhash": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2" - }, - { - "value": "1021149786004102171518418944", - "unlockhash": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84" - }, - { - "value": "1086317896872802419597639680", - "unlockhash": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327" - }, - { - "value": "1040126529589146696184496128", - "unlockhash": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d" - }, - { - "value": "1001927480251239237461278720", - "unlockhash": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c" - }, - { - "value": "1066966507595037750612197376", - "unlockhash": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["178800000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JQ2o2C7MTrHOUUfOLVhAypRXvgfTuEDilhxx8jCxjQVngI7KNrP9YAQnuHDTxmX5PHX0Zk7MOUjPnuucAFs5AQ==" - } - ] - }, - "transactionid": "a103a797418c2f0f51bbf0c3a5cfac5f86ea35db8f0b4f22c988d0727690a4af", - "confirmationheight": 218118, - "confirmationtimestamp": 1564478571, - "inputs": [ - { - "parentid": "185a36ce659cd2d2a27b1d7f37a859603b261b7e064419611cdf9c3456c96fe6", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "abd49a6186dd6b8d6d3e6934111cb1175290e5ecfc3ebf2ca22b0bc7a5d06a448fb64c5a6a9a", - "value": "78321566977833539029107736576" - } - ], - "outputs": [ - { - "id": "e4f0660392c09ae1d1550e69a50a68800b5d519011f4ea9b2e6b73972782f4fc", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1067103623415482546621251584" - }, - { - "id": "c71f18e298a83c3df1c36dbc9ac6ca3c77cf8b945f16ce554191a7c2ac6ae2c2", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3606850898532315041009500160" - }, - { - "id": "7c8ab6cb695ea5d3926285af48995d4e4e4e0b20a9fb20e1aff86f1c723d9394", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1200604817451498664286748672" - }, - { - "id": "f5565d11d07234538037282c2381b9a383d685a0e95e5963252e108c9cacbeda", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1142471210281919286378233856" - }, - { - "id": "10c318995a4da553f5c6f765e38a4b9c4df8f67a0621db25395a2b0daee43f84", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1280561008164527800120770560" - }, - { - "id": "474d53e401cbd17e2a77f98f47b47633c0801289cdb147ff1d615ae278c086ce", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3689358102071416957335240704" - }, - { - "id": "d62e76bf24dcd1aa0c43241281fb948a959ed7b15152af792e4f4f5cfaa8c5f1", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17383949398346429862642712576" - }, - { - "id": "58da4c3d78e29943e9ba293e1e4ae87d96dd7d843be4fbace2a9a99e1bcd797f", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11131753814571289675674157056" - }, - { - "id": "46712e2719f367756cf7e6871137230395a39999d12368d53b3031a40af26dc8", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1066051785935992670377738240" - }, - { - "id": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2820108406750158796917571584" - }, - { - "id": "aa641f9d40681d35be22f97a2df4df82a87c651b56fa517507440757fd2fcc26", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1188218202438719110467551232" - }, - { - "id": "faf5cb5d4a378be1e7090bc4af050606d973ddfcec0defad174728eeb1392d7b", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1331191372656907899006615552" - }, - { - "id": "61c7979d9ceccc9edf6fbe5a144fe84b067569cf4752fa2ca8ac85b305239e99", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9580365513576136952378294272" - }, - { - "id": "25673a591809c4e0a21b7b202250b763bdff5f73da93bb41f4e24fd55604d550", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1056958841228133199426027520" - }, - { - "id": "dc2809fcf8669f3c4cfb2bc8666f41c0559dae1bd132c2da5a0f9e4e289e0c69", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1070725988217865189334188032" - }, - { - "id": "18266fcfe4eab63bb98a0deeb2a156a5309b6fa86546a9c14c8c4ae000f7795f", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1249866162163007899448115200" - }, - { - "id": "2018204b4a7b1216d283445db80de160e901986b93cb03bbb41a17a3321ba694", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "75ebe65055559c3063ba5f674f35bdef7217a4b7c5a60fc443e54d588fb05ad9b23b4c41517a", - "value": "1030515649900745852563226624" - }, - { - "id": "e46ed11975b57930a2e442f2ed3691ed40ed6b32e314f86dfb8581703a0c835c", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "ee834fedf06db25ae4658c3a03f1e15710f531add492ca9c93797cce49702594d2137e2021c3", - "value": "1024714419819799909798395904" - }, - { - "id": "d46b4fdccb2b9eb2ea2cb9fc6119e0c11b77ae485bb9b94849f7e8b649e3b9ec", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1034191559435645461367422976" - }, - { - "id": "63bc68fc3565737dc7a143713b99ffdd21981c18400a38eff1704236bf1bfe07", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1082528127038452761667043328" - }, - { - "id": "94e3f59b1d7f4b82db7a70ded339f7cb1dd23eba1ee03e57ab5ca433d17cfde4", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1271744157946098301183983616" - }, - { - "id": "ccbd6a91b493061c5569fa35e161c62e8017ab2730d63bc640b7508317670a1c", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "a0022759beada9b3459b6b6910182fda80b1ab8fff911ceb54b171e20d5b6ba16ae3c5d22faf", - "value": "1053408299151753070937866240" - }, - { - "id": "5a71dbdf3f4cbea06862bf7b8e99adcb2cd6c33348da9468c9a2c3429eb332ce", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1170407261310609221001674752" - }, - { - "id": "c45119d310a11c47d517f21f1e4072fa3c630220ad85a00b407fa48533b7298d", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1277344533657219609850281984" - }, - { - "id": "28257fa158de6a52bf87478b880433cf28f7d73af94d76a95abc9579b91a8150", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1095081077372849209696321536" - }, - { - "id": "ca83fa0aa986dc59367cebb72d6ded04eacff681e2e84a9be051387529b83965", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "49f1dfa0d714323a9fc7e3f24a0c07d1d78b0b353c4407abf80069b8e380ba9e89d476556ca4", - "value": "1054844583128988610840887296" - }, - { - "id": "130770d2bedc2fb0834d7eb0ad3a98161dd7e574a984b02118c48ca93f6cdaa0", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1110007066570522996324433920" - }, - { - "id": "715bf0b0a744dc7406e38981162c63420188eb9c15b1b6b2946294e1c778efd6", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "e73ff8a828f2ba7ba6ecf9cead4a3355ce546ec7c38e44427811950105922ae3f4e7752da5f2", - "value": "1033974096386724197077450752" - }, - { - "id": "0a4f1ee54f29f2fd10b7c932c97afcc2ae7b68c72efddb7b85c7506598c32a68", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "4e33b0069880470f3fea76a5bbc1d167fcb66c818b663145dea53b064ed68b2aeffabcd0fa84", - "value": "1021149786004102171518418944" - }, - { - "id": "6a4e5b6bb6b5505a683a46f0566b86d7f00e685ac0a17ec9e81abab11b4b193a", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "349781852f65b7dbc32f5c442a1cbbd190b9d29b2050b006d07316c0d75ac41cfc9f96f8b327", - "value": "1086317896872802419597639680" - }, - { - "id": "c4cd3d3762bb83ed6dc083cc86c59b5f73dc85093cc242625f57b7964426b1a9", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "40c4b16a5241921071f570fd958622e56be553183b758bc6496c80dc05ec780d08dd2664980d", - "value": "1040126529589146696184496128" - }, - { - "id": "7b24efb4df4b62c78730fd5349c509a26265fd78b4a53d9cfe5ff9a19950e5d5", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "15175205ba7d94af3da594d2b746298f6378f54cfada4d78aae5d7cd893e19dc64506ada769c", - "value": "1001927480251239237461278720" - }, - { - "id": "a1e05ecba513da5e311ae36603ca3d84e3388e3531af22e26dfbcd3536d5d86e", - "fundtype": "siacoin output", - "maturityheight": 218118, - "walletaddress": false, - "relatedaddress": "00184b911c634cbd8332f86e2b4187c16fdfc37816f24a38b20859314174bacf97a4761e991c", - "value": "1066966507595037750612197376" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218262, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "178800000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "AkMkl9bDng4f14fRE+cx0vIBvEaVMyAWTBN0ppZV2fY=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1006115121946052132620795904", - "unlockhash": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977" - }, - { - "value": "1077757056858005072358146048", - "unlockhash": "36d906926d31c026d1b8afa5ea3b081d90e56b783940258a6080c88c47f79485ad03131596ed" - }, - { - "value": "1261616722630208633152995328", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1377121267700535616143884288", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1006573242388010429731831808", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1155606153781333282080686080", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1242957888857395106367930368", - "unlockhash": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d" - }, - { - "value": "1069708289171825494478815232", - "unlockhash": "c602b3b2afcf1994e320692dd8a430482da14ab851a3ee2abc478cf699e2ec005bef5fc01c02" - }, - { - "value": "42356883711598264987598979072", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5032099881622398662743162880", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1204652580091315209960947712", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1842801648649720093299703808", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1617712690964586957131218944", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1010012627931276744210219008", - "unlockhash": "8abbed1e22a1b0331a9bfbac6d052ffc5f073968ee9b4baceb3818bafa7d6bbb2aa588eba90d" - }, - { - "value": "1067098078756863253175205888", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1146775180680066403506585600", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "3209939044013003990936584192", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1060776902753653163450433536", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "2180906999682775826055561216", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1993098651475005940495810560", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3844140322196198610029248512", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1238955150291049237894922240", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "3758959627836054444162678784", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1315710069896515394987884544", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3758145221164111482954186752", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1915463854295617758243586048", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17792232111961249104772726784", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1960064386293437508899307520", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1031641779791116565403926528", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "11313127924259796374310092800", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1054132753645990535711686656", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2846299247203753521666064384", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1191903619196551391491391488", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1367583233156852990678663168", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9683765117214262713624035328", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1289570613782679395962454016", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1029328613998422569468821504", - "unlockhash": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769" - }, - { - "value": "1054540569087072793601802240", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1073972016055257197835190272", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1059075575294029210858815488", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1029616655427467363005497344", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1206048536680381333388787712", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1398764960343904014559084544", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1892020039226171063871209472", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1768780606884800256480903168", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1075082704453619740588900352", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1023031583261975468117590016", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1872916272858059971929047040", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1065593294668769439567052800", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1226393994005440362463625216", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "MClhC08LsRMXASAtY4N1kqevWhXJ5Jz2UP6+laI3SqzSf4Xe/C1CROjxQM2GzEUWTcnPwAI189mNyQAECe4eAw==" - } - ] - }, - "transactionid": "9c490d64b46e835fe07131e62e50fe064d3825e1505f8ff6093d509ce8c1cd1c", - "confirmationheight": 218124, - "confirmationtimestamp": 1564481885, - "inputs": [ - { - "parentid": "5d1b032b7ba391797b899662487ecf51251bd0671c6b0f4b822f6856a40d9271", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "c2eba088784bbfbcb49bad654b2375491720c32459f9f315ab7ecf95b7152b2e844207bbaa8a", - "value": "156057314195982904816028680192" - } - ], - "outputs": [ - { - "id": "c0399cd2386cd469d146579f4b78b6f831d592986bbc7d12b366ec6882b3e34b", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "7693cef45d5ca145fd0dd3a3745140e9309ea578f53ad5fc9e4d728a16251f47c0590bff3977", - "value": "1006115121946052132620795904" - }, - { - "id": "77697a74eac161d0b58210ae5ec2210207cfdf37c134390c39c4b55dea3f4e9a", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "36d906926d31c026d1b8afa5ea3b081d90e56b783940258a6080c88c47f79485ad03131596ed", - "value": "1077757056858005072358146048" - }, - { - "id": "f95d7b71b6535dd801ca591c749db149052b1da027995994d2704714d9ff221c", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1261616722630208633152995328" - }, - { - "id": "bb7c708916ff7a5d4d65a0e2f00d2da5e8bcf64ef9e7028d519a737724490c97", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1377121267700535616143884288" - }, - { - "id": "581e0d4f4dc4998cd698a1b10fd8f7426efa405752c6b0be97108645bf25c414", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1006573242388010429731831808" - }, - { - "id": "446e059499f38b2c5fc00a0d0d1df53d89f14c927f054f2f553a7379fea07cbe", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1155606153781333282080686080" - }, - { - "id": "a272b2b7dcdcf930ac7fb400198b3d7cc1eb3b5f52ed04e30c429a95533d1d37", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8ed452fd70dd33e564fb833f36c0a29374dd51a5b2085cbb753ca33c0750bf85cc418f7b848d", - "value": "1242957888857395106367930368" - }, - { - "id": "f441fb86908181fc9cbecbf654669ade5963beb8d5fcab78c2c037d192726454", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "c602b3b2afcf1994e320692dd8a430482da14ab851a3ee2abc478cf699e2ec005bef5fc01c02", - "value": "1069708289171825494478815232" - }, - { - "id": "049efc078e026880a31da3eb522161b368a3ee88e3cc07deda7850b9935a10c6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "42356883711598264987598979072" - }, - { - "id": "34aad2a609e246dc2c6b1816c330d33705d7661fe400daec8679e90b55457b91", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5032099881622398662743162880" - }, - { - "id": "6bff21bad66e38b7eec7514ad9459f7821c0b9be1d79e097451d07f333b1bbc8", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1204652580091315209960947712" - }, - { - "id": "62040dfb359a2e01e18eebcc2cefea0e4633ff8bc55518c41d3e8bc748690f70", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1842801648649720093299703808" - }, - { - "id": "2c53d14030515723961cddc1e1d6a44b858e9066d9e5a15bcc13444ceaac8d75", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1617712690964586957131218944" - }, - { - "id": "90e48d757e5afc2e64e6c4cb244f4c4d94cba59669b9dbed80ec358b276ffd58", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8abbed1e22a1b0331a9bfbac6d052ffc5f073968ee9b4baceb3818bafa7d6bbb2aa588eba90d", - "value": "1010012627931276744210219008" - }, - { - "id": "f59df9686951a37fc75925c96ff43b2156621ace15b76730d278ca56ab825f35", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1067098078756863253175205888" - }, - { - "id": "4233b9f68271b8a477397226f60aa5794365efb2ff25b4147581af0324830670", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1146775180680066403506585600" - }, - { - "id": "7ad910226691d7a4d029ce3f77a39c773dfd74f41f0e1b5949d9affbb6552ffb", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3209939044013003990936584192" - }, - { - "id": "f1b10396c0b976a1940515ed20501b1c7d7acff345413653ffef43ad202f7cc6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1060776902753653163450433536" - }, - { - "id": "4669acb20eaa5e74730f42414643012a167e6df32efaab99fd35649526936bf4", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2180906999682775826055561216" - }, - { - "id": "4887e76bbeb71ba295a735b9190e01f557d702f429fd886ccd1830c27c0bc995", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1993098651475005940495810560" - }, - { - "id": "0e87a52f1d91fca099b0cf8d925fda91af3522732e79f77e95d2630447369b91", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3844140322196198610029248512" - }, - { - "id": "c5ec10d91de93921adaea31a754cf2c78bb0323616ceda43fcd5e5bd0487c165", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1238955150291049237894922240" - }, - { - "id": "36584a827315284de3b92127a85c71045bf171d928a15ccc9557c2728cdd90f1", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3758959627836054444162678784" - }, - { - "id": "297beedd3ccad8812c7d3823c17d3e91e75b624e9479384030824fcb9256d966", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1315710069896515394987884544" - }, - { - "id": "1377c0e7dce525853e3b04b75929630e50ad1d76101f1fddd260cfcdd3876e29", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3758145221164111482954186752" - }, - { - "id": "aeb1729b687843cfedb005c5aeb3b6bd68abb79e52ce19e073e05ececa083c4d", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1915463854295617758243586048" - }, - { - "id": "611dd27c660296235732fd5fba48d7b90e7a52a441ff10bd8ada858d08d8e382", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17792232111961249104772726784" - }, - { - "id": "38adb2388fa861505368595fdd7d29bc46e199d0614ded31bc52cbab05f41493", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1960064386293437508899307520" - }, - { - "id": "3997d8d480f4e8903d180971e5d9c2d7cb4f0a27555714d45684420df7918ada", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1031641779791116565403926528" - }, - { - "id": "de105f260610f343d5e7c502d8c7872f967ba07465859be83d6079820c07b700", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11313127924259796374310092800" - }, - { - "id": "fc0d76d170aaff9503863e803d86f2f83f0b919ac6e5d08808d9206fa96ce6a6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1054132753645990535711686656" - }, - { - "id": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2846299247203753521666064384" - }, - { - "id": "c09084afcc053bf84a826c792f0e8837df31dc255426627e65fc71efb8b71e69", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1191903619196551391491391488" - }, - { - "id": "1a715beff8487d52ffb9edbfe897c794f9868d80f4a69713af4a551456fafc64", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1367583233156852990678663168" - }, - { - "id": "e33aba7c79cee56e451873c1b3991d9f4eb7e1fa9a298720ff542dafa50e5ddd", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9683765117214262713624035328" - }, - { - "id": "88a5db07eab9c007e181c3e359499ca04177d9176b4ccb9d305f5422bec6ddfc", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1289570613782679395962454016" - }, - { - "id": "8a94d61e99954751eceb9d92cb68ec7e86c73e4bdf8bb78137eea42e13dbf4e9", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "d70c8a23a2cfa5ab58944b92242722c36c6a20eae29eb9ef8d3083d0fb4736c0c4a062cb8769", - "value": "1029328613998422569468821504" - }, - { - "id": "1db4ac43c85bf35fb054216dfdc100334e79d41b3d25fbc66b2c63ec2142f6d4", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1054540569087072793601802240" - }, - { - "id": "64e9a97e3b94629c8c2b9e2ff062382c65d15761ebb50f4d0e189329a2a9d1de", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1073972016055257197835190272" - }, - { - "id": "5c4da1dd5854f9a527cc4ea4156ab4556cb20fdc00c5d8716aede453ca6722a6", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1059075575294029210858815488" - }, - { - "id": "1dd929d82d133b27465bc9899f2ea8e8d816626560c030118457c7c09ab3b4bc", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1029616655427467363005497344" - }, - { - "id": "f72aa942b39ac9420f11459f5afb7848b5132bb29e5e32cb77cf0255318d22b5", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1206048536680381333388787712" - }, - { - "id": "7e43bbefa4af7c4a913376614d31f59386d13c4d05bcbf28e8e1c0151e021267", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1398764960343904014559084544" - }, - { - "id": "65020996c43eb6961fc081076d1d9968198c0342384dbfe1720b7c56da9728fa", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1892020039226171063871209472" - }, - { - "id": "9c25058ca7117d6f46a5c246c6f79d37d330bfcd35662d40033f7fdd80d56572", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1768780606884800256480903168" - }, - { - "id": "519d28c2ae4ff0b73ec9e8a0364e647281138a41a60a6b3b23d602576f754eeb", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1075082704453619740588900352" - }, - { - "id": "a87253db5f42e33faf38f3f95e3f1db89f91360bf92ec6e03533ab48f7f1adf2", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1023031583261975468117590016" - }, - { - "id": "970c9267ce276b6cf4d1c6a7ce3ca4ef7745c7c8d12eeb35dbac875fedd0a719", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1872916272858059971929047040" - }, - { - "id": "10471584e4b23e97cbe7bd230243225125c832359d395074998432df1ba0cae7", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1065593294668769439567052800" - }, - { - "id": "13cf6f12fdf8100c3fd8b42d2ae278574e5f315a4adc91ea0960f84166a6bf07", - "fundtype": "siacoin output", - "maturityheight": 218124, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1226393994005440362463625216" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218268, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "bAi329KTW62sVeeyzY72HuwIFhPA5V0JPSfCu+b5yiw=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1037029684180142086047137792", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "1944660225829519742833000448", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3416309699741235439667773440", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2390956718961282208130662400", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1034262113248753722958282752", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "4062776947252216784392028160", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1012143300576476966227247104", - "unlockhash": "2627fd065a7c7684892573f39aac87ea8b7b98e86b1ccea02c17da93a4beb0f90d0f41b09145" - }, - { - "value": "1046880448580468594097209344", - "unlockhash": "84853bfa4bc65b2fbe41012a93f9d79cb66f33893f5187f31593c76bc8069cc347c0ed871891" - }, - { - "value": "1058050046658118622639292416", - "unlockhash": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda" - }, - { - "value": "1207073770846243066510573568", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1085998117835410722779561984", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "4076110459553017920921534464", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1117765206981652924100247552", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1392265515379145303465656320", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "4017226981975712734380032000", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1129432138909471986812977152", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1469303578264578407677296640", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1126736935376455721088974848", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "18930920351105102669171130368", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1033535746867980515797893120", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11856136176176325715300450304", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1129805483021726423831281664", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "3048695663695426512066969600", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1330154131825206363731001344", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1492166809450816321294958592", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "10329560453993273097694740480", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1011167783543899621770526720", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1143952725145338812972924928", - "unlockhash": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a" - }, - { - "value": "1059476035358270589377511424", - "unlockhash": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb" - }, - { - "value": "1024379990641337341191389184", - "unlockhash": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d" - }, - { - "value": "1012198451501441182713053184", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1259178222503416815502229504", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1060621403900288996096344064", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1155104005404635281053122560", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1073367978558073460991787008", - "unlockhash": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036" - }, - { - "value": "1069346744285905529830244352", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1014244178812704810181132288", - "unlockhash": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e" - }, - { - "value": "1016528215463880911527149568", - "unlockhash": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb" - }, - { - "value": "1004246416404011314269388800", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1011798932284100349893902336", - "unlockhash": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add" - }, - { - "value": "1265243169114599342686076928", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1021180863793703639536631808", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1246734392510995725927579648", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1083776920907899563856494592", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - }, - { - "value": "1297762197880984476542042112", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1003754431837234565653921792", - "unlockhash": "0099c1c333f9ac11099b1685ec7318ec908bdc8fe21221afe9d51b74bbad6ead0435accf2644" - }, - { - "value": "1009913604949128846912782336", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1087726993492361282198700032", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1178303031250791703034200064", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1317192290672887734486433792", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DGmMTY3uA7+cu1MH2s4+J6SCb9zTLZQNfZT+Ic8lM4mAHCycVxFrok7L3HcdASzfROK5Ejn0rC6Fadyl/yDLCA==" - } - ] - }, - "transactionid": "8984609b9096ccc904015f15f2e9ea29d4708b8a4bc76a77e67e25bb01292981", - "confirmationheight": 218127, - "confirmationtimestamp": 1564487262, - "inputs": [ - { - "parentid": "071a54508a0cbaf69684814bb5ceb7ba3a5423e130451d22b7a9793e7399083a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "48b71687eaa838f2442beb176252b5285568abb1819d5b2b533e1da25b9ed5b3441ead44a8f0", - "value": "109203395686503652471823482880" - } - ], - "outputs": [ - { - "id": "85c274e1a3c75faaee8a9ec8ab3ab1936716a7504a02b61d0b3d4bd3796066d2", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1037029684180142086047137792" - }, - { - "id": "187874c8408748a47f048a245444c47f6e7205f1bb8b2fde4e551ef477b2f2cf", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1944660225829519742833000448" - }, - { - "id": "940a42f770165f7f342f767df2d50062803f8dde7ec567e5afcb2e7376ebb0f7", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3416309699741235439667773440" - }, - { - "id": "830cf83ced9b2f5738247498c79519e240e2821cae8d170f6fbc0e8ad4d203d8", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2390956718961282208130662400" - }, - { - "id": "69e959c1cbac29b8064045dcf08309cb2b7ffe8dae9d82a4d3c61359746870bd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1034262113248753722958282752" - }, - { - "id": "5c189bc92f315141244428e724a3f522f23a030d140004a5d5ee547648fcb8bd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "4062776947252216784392028160" - }, - { - "id": "2f4f139ee67ee8ceb5034532e8c45620040c841b737756c67709b13cf6263908", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2627fd065a7c7684892573f39aac87ea8b7b98e86b1ccea02c17da93a4beb0f90d0f41b09145", - "value": "1012143300576476966227247104" - }, - { - "id": "9ad23a78193ab33b003235c62bd39c0a23c32260fbf050c56fa102d1fdaa7c58", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "84853bfa4bc65b2fbe41012a93f9d79cb66f33893f5187f31593c76bc8069cc347c0ed871891", - "value": "1046880448580468594097209344" - }, - { - "id": "e35d41d5e1570a9a23e22f608291c378956edf07295bb50d524d1365095a719d", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3a14a9d4ebf62344ddb0fb6dfd18dfcb77b1519f12a8c61ede5adcec1b1634a639917ca4ecda", - "value": "1058050046658118622639292416" - }, - { - "id": "be0c091a2eb12e5d300944f10ce9cab0025fb7ee42c7d7eceb057080a81ff067", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1207073770846243066510573568" - }, - { - "id": "35ed62eb92b6cf8211e7bad2d63128d0bce699be1171b7235e1500046ea83700", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1085998117835410722779561984" - }, - { - "id": "681bcc1060fa452bd404a77afcfa79c6ddd8e9ce960594325d943dc28d27c14d", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "4076110459553017920921534464" - }, - { - "id": "64bd6f31f4a73270c567e7e4737dc345d2b24d46af709e92cf3c460334fc6583", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1117765206981652924100247552" - }, - { - "id": "634a63b6f7c16c70d294c01d080d25e85e280305ff38cf91f81e5728571f0e73", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1392265515379145303465656320" - }, - { - "id": "67834ebada78717ea5f73c519b921c3382e283a4c33afb490eb3e4435b351800", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "4017226981975712734380032000" - }, - { - "id": "a09dc9842b1efb04bc85a06a972528345f335b2a884d1348ad0c785636eb9be9", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1129432138909471986812977152" - }, - { - "id": "460b9f2e9aca433a15dd69a6f8fc58912a73e79451880870f7134b40fbcfc65b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1469303578264578407677296640" - }, - { - "id": "e9ad40768822b39d3364da9b5176fd36c7507ea83127afd16bb74275d144588b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1126736935376455721088974848" - }, - { - "id": "6df74e67aad17535bce352fed22e6d1997fcf3b60d2fb82a5928c41253fede7f", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18930920351105102669171130368" - }, - { - "id": "c584af8d3516602c2fd44333cd9f8f2cd7ce856ea7cf9977b87a0e1c38c814cd", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1033535746867980515797893120" - }, - { - "id": "cbdb8db5825d5c71c07e28660094419351489e3801d60d7af3a01e0a818a4548", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11856136176176325715300450304" - }, - { - "id": "5906eed85f218b00aac2947485f70d0f5da1391c7abeae2d4c24da64f7a86e8b", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1129805483021726423831281664" - }, - { - "id": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3048695663695426512066969600" - }, - { - "id": "995bf75697635795045bccd833c1d22edcf2770255b275b0b94ccf5833a89aae", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1330154131825206363731001344" - }, - { - "id": "8500ffe8b24ee7b03631cece81a6714b463db2fbe6386c0310a8130bf843ea30", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1492166809450816321294958592" - }, - { - "id": "1d16b6a3bdc6024070cd78d3301219f5cbafc4af43bcfd631cdda9079f871d52", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "10329560453993273097694740480" - }, - { - "id": "585913a91eae50cdc1b51901cc5d60f2494b9d84799a0cd3eb8de5df48b8d0da", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1011167783543899621770526720" - }, - { - "id": "4d13d8eb441cd54c09c6a03f0958a316c331bc3d1c13424bbce82fb055f62119", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "65cd0da61cb0a0fd9dd61c0fe08735211c2399cf67f9295dd4c7e3ae502f6e249656f831457a", - "value": "1143952725145338812972924928" - }, - { - "id": "3a5ae5f602d76eeda76b644d8a52c7cff65a648d36fe84768b8f3994ccb867bb", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "a223cfcd8987312489d57e58624e62e7c8a70a3dd269ed49eda2797ded2a30ecd19d7835eddb", - "value": "1059476035358270589377511424" - }, - { - "id": "0805e798a473966c408a91b04c81b978f1df4a00928ea927d857dd6934e74614", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "5ad7cfa1022fa1b6862426d5b543ce82c11043b0e52a13d2e9756736987cadbb896adb586b7d", - "value": "1024379990641337341191389184" - }, - { - "id": "81e71b94efb54ec426c79a4db9ca9f1b2d6f040a49967094dec55161899cde29", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1012198451501441182713053184" - }, - { - "id": "9e7df38c3d52ccc87c9e22a1a169edce80bfb5837cc707a366cbe0a614cc4cec", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1259178222503416815502229504" - }, - { - "id": "2adf3e053443a187066f64ee4afe02f66cd6408496baa7d66cff504ef5b7e2df", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1060621403900288996096344064" - }, - { - "id": "00d6962ae2ebccc22f4d11144c0ef8c49c22b1ca5c8c94ab08f13369ee3be2eb", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1155104005404635281053122560" - }, - { - "id": "00daddab61ca9866ecf8de0759ee35b07e949c05390fcd45f45d15b4ee91d9c3", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "1caad06f3b85b67bf09263b47bbf0053bea632264a750b1ba9038d0d9fdcbfb34e349fe2a036", - "value": "1073367978558073460991787008" - }, - { - "id": "fdcc7e7367db7a5f39c3d716ae1a0054cdeab1d37f556c971c5b10cf8e2ae9e8", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1069346744285905529830244352" - }, - { - "id": "c02326557f83779d03e4d5b018e1814dbebd5c0bd51b4b698fc7be670eac6332", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "c05e5ce310186cc1237ec0b2fc0275f29b7f2c588e551a4fbe7537787ad1f75b34842363e34e", - "value": "1014244178812704810181132288" - }, - { - "id": "ddea7294bdc07d1ad552848906a0f4de401af631ea5c8106fc49e5a27aef01c5", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "33d3831e527bb4e90a71d859056c632b7544c14651ee6e1c6b2d232faa49b307c6a376c987eb", - "value": "1016528215463880911527149568" - }, - { - "id": "bbb49bf5749f6f60e030e28a20aebf0c323dc5ec0a911c32b6b268a5ca374a44", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1004246416404011314269388800" - }, - { - "id": "a08af90edf732212d2468c5fe2ffcb668931c3586b6d5492929fc191ff8401fe", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "f07eb5a4562f60c823e4fbab702c3b3d7b4cd347c792eb30719457cef8a6ccf94df089e60add", - "value": "1011798932284100349893902336" - }, - { - "id": "29eb4a4b2ac5b06fc906b1da9653c74f8736dfed850c22cf00f878a1f206ba66", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1265243169114599342686076928" - }, - { - "id": "7700193f67621a094448ece3702318456091474abd5c94554685fa2294c4075a", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1021180863793703639536631808" - }, - { - "id": "99b0640684090bfb44770448c1c25f89b8760c333c4bd23f3c0de495a54fa13e", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1246734392510995725927579648" - }, - { - "id": "23d272182698e5c8538dda679a9dfc646b970eca8a675af7f65137c76d3dfc62", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1083776920907899563856494592" - }, - { - "id": "51db8ef4ef939d9b4ad0e651fdf7cd6337664d1b29a091e1f0965e94eb1d8e9a", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1297762197880984476542042112" - }, - { - "id": "7136e5ae0ebb3625554b718b96c50666cda97f623434e7c0bd0a4085354ba246", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "0099c1c333f9ac11099b1685ec7318ec908bdc8fe21221afe9d51b74bbad6ead0435accf2644", - "value": "1003754431837234565653921792" - }, - { - "id": "0e4e92096d8ecea7410ee20a576c9559a51776a9d4dc0d416bc9e909898ac9ef", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1009913604949128846912782336" - }, - { - "id": "1a406a8cee3011ee81ad9e118a390b83a3c949ada3ab18fb6466df32d185e2c4", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1087726993492361282198700032" - }, - { - "id": "f27941804d99d45d0306830fc321c30a36a1701f443cad1fac8b0e81c15307e7", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1178303031250791703034200064" - }, - { - "id": "9e8ab06dcaa42ff6d17a46424c5b65c9d1e8be9454fa1231a8bc163eda9d7865", - "fundtype": "siacoin output", - "maturityheight": 218127, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1317192290672887734486433792" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218271, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "bqKT3DAv9kJ/KqlUVKNTAnkOxtvKuBobO4W4ono6vJs=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1059644020650375557973213184", - "unlockhash": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0" - }, - { - "value": "1109259119404312655682863104", - "unlockhash": "dc73b6696bd026c7dfaa0d9b20af8f0fbd5bc816f9d45fed3256250b63b74cc0d19486904a38" - }, - { - "value": "1106748490469012445607493632", - "unlockhash": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44" - }, - { - "value": "1084129754063711958928982016", - "unlockhash": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910" - }, - { - "value": "1144266248415212470515531776", - "unlockhash": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7" - }, - { - "value": "1269807692013506655761727488", - "unlockhash": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd" - }, - { - "value": "1024489664572948748421955584", - "unlockhash": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d" - }, - { - "value": "1352062801843881087661506560", - "unlockhash": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186" - }, - { - "value": "1202156805821809382537560064", - "unlockhash": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9" - }, - { - "value": "1209876269322472444084617216", - "unlockhash": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b" - }, - { - "value": "1219545612520442727659470848", - "unlockhash": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db" - }, - { - "value": "1040418104290733036851445760", - "unlockhash": "5774026307e750665d312dc99449dcd3004c7e4186c94095692250cf9405e697b4159c1170c0" - }, - { - "value": "4261883657786323424434454528", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1236276148750365876276953088", - "unlockhash": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea" - }, - { - "value": "1161406049698907163685552128", - "unlockhash": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528" - }, - { - "value": "1479084094201135933803200512", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1095141739658467096598151168", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1254558496408710982510051328", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1037149073694193469958651904", - "unlockhash": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c" - }, - { - "value": "43609936809674054354763513856", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "5057336264682840285455056896", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1273681315442532512805421056", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1030754810137359855648243712", - "unlockhash": "a66256eaec0e1236519bc23ab4b563b2667891d936c0a18fa5bb1419f7ddb4e3d34a4904eb14" - }, - { - "value": "1916852839616843638781247488", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1018199610326028808923185152", - "unlockhash": "cb14ee8320119c4c834a1eb14c1005c5ede92cc88bec2437d18796054a162a22d3bf52685abb" - }, - { - "value": "1654233034812611973544411136", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1376012330029645097223585792", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1034754309593395055790751744", - "unlockhash": "880229c0a1bf01bce9841bc3f16e1643dfc25a3a37896071bd99d60b608bc399b1658b563849" - }, - { - "value": "3294077684682173315635216384", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2208009763051540492912164864", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1039548991139611002697416704", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3990456000464087072991346688", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1263442697224883302654017536", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "3972386296083260390273712128", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1046447656860458893167689728", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1112939939317231810628812800", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1354794221753401233817731072", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3914067913246566181073059840", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1959793449281643711976964096", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18492828570596198691926704128", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "11734719183886923464074854400", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1128922325205686210395111424", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2964984241465839560331100160", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1273314617204934328472043520", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1429927091082503911540523008", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9767326273452651060018544640", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1075885654946249793618542592", - "unlockhash": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e" - }, - { - "value": "1075947329358765356516245504", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1101568580668219687330250752", - "unlockhash": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77" - }, - { - "value": "1046085548285194333336371200", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bPCWhGtc1G8sXCxKPiqAsujpnRiO00F2i1bHKDbZGw071/a/Ep2FTb1z/F+cLob9X864JrluWq1ivQPYXm6MDg==" - } - ] - }, - "transactionid": "14f64ec83f2e081e44061af0816f698877e16bdf06577f6eac96b6e9b88f575d", - "confirmationheight": 218133, - "confirmationtimestamp": 1564489589, - "inputs": [ - { - "parentid": "43ca9b3e2d1bec744a9c7f718654da58a59546eaaa51ed620f5836fc9f1426aa", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "ae9486c98cc93e83dc8afd314e55e66d7af33b7886a403bad532dd0d4a7bfbf2b05a1a58d2b3", - "value": "159567379197159858507277221888" - } - ], - "outputs": [ - { - "id": "38449b5331458d0c0bdbea0a0100e088b7ee6606e49755cf58389d75529faba0", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0", - "value": "1059644020650375557973213184" - }, - { - "id": "25efea4c609cafe147daeca5ebe85f31521571bd971121b6df55ce5fa8325f56", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "dc73b6696bd026c7dfaa0d9b20af8f0fbd5bc816f9d45fed3256250b63b74cc0d19486904a38", - "value": "1109259119404312655682863104" - }, - { - "id": "54e0621043649e5d974f93225841f82d2d6e0cd41dd6c57a2c72e02b93a3faa2", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44", - "value": "1106748490469012445607493632" - }, - { - "id": "6711eafcbb2b29193e7ea7d7a7b23322e9e32d182968efadf759626ca8333768", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910", - "value": "1084129754063711958928982016" - }, - { - "id": "03e9bd1b4d084c9ff56a19db3d42421a74fa7e221898a136c90805bc3359cdfc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7471ca4e3a03a5fc411b874eadd7d0b6e2c1f70cdd6d21d7029ce2497805fcec2f65b5f6c4d7", - "value": "1144266248415212470515531776" - }, - { - "id": "a652b942bfb3067de098719c4a0cbeb1033706b2947ac58af9038d4918b2f9d6", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd", - "value": "1269807692013506655761727488" - }, - { - "id": "9a604a966d3f3d0d66a9df345e504e9e353534508d09fc5da02b84ecf725b49a", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d7a25a4c9ca005030a9c165311406a8ecf5f0b3d5adb044abac3e8271ee21cba0367e9d08c8d", - "value": "1024489664572948748421955584" - }, - { - "id": "b2aec7fb11b899a3e1bcc84ec1a6121438d809c03cfd8bcb5016fb50a697bf8d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "8c8259c981d07e858703cf3f89d3ec12906e3a5182d39f8c70014528d5910dad7a59c9333186", - "value": "1352062801843881087661506560" - }, - { - "id": "4d00af6bff488bea93ebb64a3c27043a906ac072fe7f8710a218f6703ce3a74d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7f47cb4ec554d03967c1d05229db94d1221f9eb7f2257f211b16091f132c8604260406a81fa9", - "value": "1202156805821809382537560064" - }, - { - "id": "1aca58087691e4a4ab95eced1c3bd2b5327cf2754fe5064c49511f3dc8339e46", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b", - "value": "1209876269322472444084617216" - }, - { - "id": "e09c4e605cd8dd722e915ebea372643834a561ebb6a25db08dc8fc0548ed9aa4", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7a176f8612d69b740d407a19e05b635a3bd6f0e7ee2d2ac63a00c69116f0a15766925aa923db", - "value": "1219545612520442727659470848" - }, - { - "id": "fa99881069e359bb190e07da532494b2cd9d553d6fdd8b4fd64708475031e13b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "5774026307e750665d312dc99449dcd3004c7e4186c94095692250cf9405e697b4159c1170c0", - "value": "1040418104290733036851445760" - }, - { - "id": "7d8c31faa9912df3734b252a9231d21a8c05dd69cb85dbd0590975b19314e22c", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4261883657786323424434454528" - }, - { - "id": "ddc9c73a51cc1c95d7a9d9061ade51a6bb79f1290c4e861cd9f2eeff03dc92fe", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1725bcf36076cfb7a87465933cf45164316c8b394880f48793c065d1511061f9ae66c58083ea", - "value": "1236276148750365876276953088" - }, - { - "id": "0ae2347c7f034b33567d13701b51cbc1d14eeb13371c3585d6c70c082d200df1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528", - "value": "1161406049698907163685552128" - }, - { - "id": "28d6e872689c6f7fea0535a62a8ec35b3b424b9784bc1c37cef864c978acc780", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1479084094201135933803200512" - }, - { - "id": "a234e88e6aedd9ed0890955d6ab6b74f2b0b7733579b942eb75e2fcba08d336c", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1095141739658467096598151168" - }, - { - "id": "c8ba8cedac16ba15587e8b50a54530174d7ccd00b925f1db5645ab42b03bbe84", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1254558496408710982510051328" - }, - { - "id": "2cd72984cfb6da04c2b215ad471acea0ec9812e271c1a4baf44a96b4bd974510", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "ed678b91024d96bc9986f84051f08242035c070286f2ff3e1d0d4fa799a4f534b7171a968b6c", - "value": "1037149073694193469958651904" - }, - { - "id": "4d4accb908b86e27641aba28d7b475eae8725fcaa67745bc3c493b2191a2783b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "43609936809674054354763513856" - }, - { - "id": "cd272f9976c6ec59fd0d2236db2c69a35729d88b7e5b3e54c86a057a4ab35eac", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5057336264682840285455056896" - }, - { - "id": "e9e7027e5e87239ccfc30afb5aea860599794a49d3a4557bf4a463928667c793", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1273681315442532512805421056" - }, - { - "id": "b819f3c1aa01f4ab71c2e21744878c5d9e49dc8e88d2b2e704f6cdb2c379c02a", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a66256eaec0e1236519bc23ab4b563b2667891d936c0a18fa5bb1419f7ddb4e3d34a4904eb14", - "value": "1030754810137359855648243712" - }, - { - "id": "d1b337a2026221af834ecb84a6b2dd591f6a1b4e7ee20d7e74e12b1a38ee60bc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1916852839616843638781247488" - }, - { - "id": "2d715c35b089f35beab7721de24cabb4e8680448091ceb7798b6c53e6ef67af3", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "cb14ee8320119c4c834a1eb14c1005c5ede92cc88bec2437d18796054a162a22d3bf52685abb", - "value": "1018199610326028808923185152" - }, - { - "id": "aaecddbbdb6df45d5cb95de730ac132ec5f65a83e241ad9313d2e9525a9d80ae", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1654233034812611973544411136" - }, - { - "id": "8b542077fdb3c3e37e7fb513cb5b8166e608907b04677caf32bdaf6b78a8ab61", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1376012330029645097223585792" - }, - { - "id": "5fe2de78f51b5f0806501040712656992fd8aeaaabc191d1daf187ab4fc92e34", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "880229c0a1bf01bce9841bc3f16e1643dfc25a3a37896071bd99d60b608bc399b1658b563849", - "value": "1034754309593395055790751744" - }, - { - "id": "4df58c34c729ee0fac253936117078d1b9ff873be52b493d349f129713fdb5cf", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3294077684682173315635216384" - }, - { - "id": "4513f474ce41b281b6e78474063d6bdc007cfa7b7fe383e04c0fc81aec475493", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2208009763051540492912164864" - }, - { - "id": "063b9c757a790d1babbdda31b9371871c0f70a43072a6b0402f68f83e579071b", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1039548991139611002697416704" - }, - { - "id": "31ae179e65479966e117399bd3a00fcda968fe74e5aa6304da601d0142b61105", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3990456000464087072991346688" - }, - { - "id": "e5b354a27534074ea500ea6cc5841fb2f83518b3421e71f821c4e18e6a8e8b29", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1263442697224883302654017536" - }, - { - "id": "91b5d6a13a0a444f3791d7488d0fddac5ef26b2b3d7aeaa4f932b50fa187327d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3972386296083260390273712128" - }, - { - "id": "415bc46c559cf794e1b909503db9f81ae93e264ce42e43c77063db0cd76a53d1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1046447656860458893167689728" - }, - { - "id": "d939c717acc69068efe34fb7b4e8a807ddf4438ed29227dc6babca9f05fe4399", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1112939939317231810628812800" - }, - { - "id": "d85bd95536e8a6964939e7109ac562354d5dd6bdc97ad71284c50b1b39b034e1", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1354794221753401233817731072" - }, - { - "id": "34c3768f566cf5e7fce015e23b68cb8b630325636798fa6d3038fcfb8433f3a6", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3914067913246566181073059840" - }, - { - "id": "ed342667441699fc7c3feb04316425392c71d7947b17c6170d5e34dc10b5efbc", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1959793449281643711976964096" - }, - { - "id": "2ceb91c703c3535a0e793e18c341da842111092eee8c534fa185b6558c141e07", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18492828570596198691926704128" - }, - { - "id": "271b254da02a6b97443e561d1429c126d815e4cb61956f897bf75d9d0e91349f", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11734719183886923464074854400" - }, - { - "id": "53ab9570db7760429a7c30f30d2f733ce617f684e9ba329f0c58fdfb359175af", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1128922325205686210395111424" - }, - { - "id": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2964984241465839560331100160" - }, - { - "id": "220da716a914eac9dde62c6c6914b5b06e65cbc34295054b3f00a32c1dbbce43", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1273314617204934328472043520" - }, - { - "id": "7e993592ebc90f282e807680d587b79f831fd86e6f2e388558f8db68afb3ce69", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1429927091082503911540523008" - }, - { - "id": "b00a76e99f4e7237cbcc3e7c21cff82625c23f6aeb57188149768db6be7767f7", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9767326273452651060018544640" - }, - { - "id": "bd50a713b225151b6586e06327821db69c26eebf8d36304774e44e429166c12d", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f461238556aa6b7fb040801633b625e5ceac0a57f3ddcbd668e6623c2ea045fc355aa4ba0f5e", - "value": "1075885654946249793618542592" - }, - { - "id": "73e41b6e1d80bc3d4fe43418c6fa154697bd4d701cfaeeb454d640d6da0f8674", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1075947329358765356516245504" - }, - { - "id": "ce919991d68ecee9b14dc31485e1b4634f1b61b1423b9c9ba1a499fa26fc3da9", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "f476167f053a78bc8094e408c47a167bea4e786ba932cb0ec2ccaa90905275acfefc1caa6a77", - "value": "1101568580668219687330250752" - }, - { - "id": "9b343cccc22162766d833c0d8e47c5df47b21ae2c300dc5292155da50e470764", - "fundtype": "siacoin output", - "maturityheight": 218133, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1046085548285194333336371200" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218277, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "zxndZ1hwonjl2QifYJC7JlQWS4fC37qcT4oiin2bf/g=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071160636543264656082206720", - "unlockhash": "c4a2315cd400e9a340bc497da7e83a8276c7bf25664990599093225c129ecb734054bfe8fb0d" - }, - { - "value": "1016997638387538473338798080", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "1225739100764404167180550144", - "unlockhash": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3" - }, - { - "value": "3198593122142973928505606144", - "unlockhash": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e" - }, - { - "value": "2191928391498639376927162368", - "unlockhash": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b" - }, - { - "value": "2700832626531280162222243840", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1071105812297508727077044224", - "unlockhash": "01e9cc6ab9ced4a1a847036ddb5d7e6fe0621cbdbd9dfce26fc4516d11e8a674acd46d1313af" - }, - { - "value": "1061755219503759278820196352", - "unlockhash": "f07472e3cd74768bd64c1c8531d5da027aadac90556693bddedd34a9eb88f9211b8f94ab0730" - }, - { - "value": "1045106307809731301319639040", - "unlockhash": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0" - }, - { - "value": "1380129637613927796418019328", - "unlockhash": "27ed6cd297386c4f0c472035fb9b83c9384612f5f12ecad84226ab9f7abebb9579515083c6cc" - }, - { - "value": "1057537932571177414454542336", - "unlockhash": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8" - }, - { - "value": "1192376719752148311139680256", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1101083437842486052958830592", - "unlockhash": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d" - }, - { - "value": "1029468385251679340344639488", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1108627845865210205288529920", - "unlockhash": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb" - }, - { - "value": "1107653244844069311036260352", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1181427162652681969775673344", - "unlockhash": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3" - }, - { - "value": "1047665304139179039410225152", - "unlockhash": "9bc93c1aa496c8b97114a2eee2483e75af5f2c88c474b27307d339041f969087f29c175c4b19" - }, - { - "value": "1174235220043559056116285440", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1150565663486321370666106880", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1151397588290881942190030848", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "4266297870402601401987366912", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1148598318086260165271617536", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "41886395850374112743044153344", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1068624685988467949729546240", - "unlockhash": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d" - }, - { - "value": "5017823329671785054436589568", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1248583195381423021781680128", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1081471528253314543357788160", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1052192188945197903167586304", - "unlockhash": "9a8b59f0ef65cf003b697fc3a4d5e608c8dc7fd95dc9c6b202e504b61564cadaa4e30d0f3330" - }, - { - "value": "1938959001101607446712942592", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3268650708935181308348334080", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2182161843716267754379018240", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1025202959629405900360384512", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3820915662368056334748745728", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1005949053210405015207673856", - "unlockhash": "3bba69c5bf5d5a48f00a423f2711947babc5a9c5da2bb4f358c9e328d71dc63d0308643f8d8c" - }, - { - "value": "1048148987141314238991826944", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "1098616007466258046068457472", - "unlockhash": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375" - }, - { - "value": "3861267407361119932586655744", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1062715234779166641997217792", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1053339951058698486201253888", - "unlockhash": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b" - }, - { - "value": "1072573686988478133827534848", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "3823356852223040061924442112", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "18198081925593475380993327104", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1891535660134369320802189312", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11263438707394770798026686464", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1105236158924096594870534144", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2912421435067960091385790464", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1193825020406170004301545472", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1389267036158522974219010048", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9550376174234568500017364992", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "V5P8c1+JEBOw/0Ko+4TMN1pbCjyku8LrPkE6ojRR7NBxM03hQJyJ84XRFaLO96KwDWQ2rDxF+a9Vgp199RhXCQ==" - } - ] - }, - "transactionid": "09f9f560b41bab448884e721e374dedb77281ad0e81a950b448bed978eb68b99", - "confirmationheight": 218141, - "confirmationtimestamp": 1564492165, - "inputs": [ - { - "parentid": "5aed983811e5db499e6f538ce94ae5a69f4bdc0b8a32f17aac21010d3b088c00", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "3dc14f1828f5441620fb9d83e8a99bb5b8bef911811fb714785fbc6329b0bca81e8818b1ea8f", - "value": "158801653438828517630019534848" - } - ], - "outputs": [ - { - "id": "f4d684644faa6bf900081800d586239de5b9114f7b57d47ad9e9c365f1dda275", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c4a2315cd400e9a340bc497da7e83a8276c7bf25664990599093225c129ecb734054bfe8fb0d", - "value": "1071160636543264656082206720" - }, - { - "id": "a731b295d3f862e25b4a039e10d1f301aaca36552928903ba7204e75f3dc604e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1016997638387538473338798080" - }, - { - "id": "8efcb620d863640da993f53320957d81aa19351ac05c11ebd73155a4951b048f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3", - "value": "1225739100764404167180550144" - }, - { - "id": "c67af7ee42896928f00730b7b035a48f87275c9f78dfdfafac5991512e60aa69", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e", - "value": "3198593122142973928505606144" - }, - { - "id": "b5f5856222ae62fde62ba83d28f6b9c183eb03858a3774b8c11ed38665b69f54", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b", - "value": "2191928391498639376927162368" - }, - { - "id": "04d8ef23146b5becd955220f51d1cb1159606461c9323718bc7925bf78c0cd28", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2700832626531280162222243840" - }, - { - "id": "ea0f0af1f770fe881125c70be7fc09fbea895ca3dae2296a9059ee6457e0842c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "01e9cc6ab9ced4a1a847036ddb5d7e6fe0621cbdbd9dfce26fc4516d11e8a674acd46d1313af", - "value": "1071105812297508727077044224" - }, - { - "id": "89862d22c4a4c6f59691904a1b1a7c2b40ee204db716b77b913d86081c9fbb4d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f07472e3cd74768bd64c1c8531d5da027aadac90556693bddedd34a9eb88f9211b8f94ab0730", - "value": "1061755219503759278820196352" - }, - { - "id": "f430a3459f3c32583d61a0076ac0a01ffeec340d88bbd61bc3e613c5b7ef100b", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0", - "value": "1045106307809731301319639040" - }, - { - "id": "9b16c98866d1e37984bc3e51dfe6f720909cb6e0f68f258c99d03976cdbb6794", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "27ed6cd297386c4f0c472035fb9b83c9384612f5f12ecad84226ab9f7abebb9579515083c6cc", - "value": "1380129637613927796418019328" - }, - { - "id": "e932ecd354743a9c6b0ca94bb045a49ed905fd7cb5b2c1c7ea65df6cb80eb41c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "ad7a1ee5671fafadfd0e6629e28a873bd64b3b9a5581e6b49331965e35412e2e9212172203c8", - "value": "1057537932571177414454542336" - }, - { - "id": "5ce2909a0b281f25d9cf1457be6f2f0420bb90b81c0170ae0fe0eae27dc07e05", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1192376719752148311139680256" - }, - { - "id": "d7700f60f77cf0b050bdb4a260d08e749d080788af43e936e182cf078d55e581", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d", - "value": "1101083437842486052958830592" - }, - { - "id": "52045c89e8ce72431bced5eaaefcd9dc191616b07fa220b5c3ce37b9846e5725", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1029468385251679340344639488" - }, - { - "id": "e5b960a99b03ecdf3c6fb51291e9fcf00393f4220e2c12e952b1e14b6a05b4da", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb", - "value": "1108627845865210205288529920" - }, - { - "id": "2a13c0d032ac4daf8373f76b3f26600efb51594d9c7818681e86413549a2b302", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1107653244844069311036260352" - }, - { - "id": "68daabacb946d5ec2fad1499024ecf7436d00c43bd0f462a616e8a012e595bc8", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3", - "value": "1181427162652681969775673344" - }, - { - "id": "ae2383e7d3642d0501b3c6f6b83e84bcfc909843e6a8e49170d455a7e04f5e5a", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9bc93c1aa496c8b97114a2eee2483e75af5f2c88c474b27307d339041f969087f29c175c4b19", - "value": "1047665304139179039410225152" - }, - { - "id": "46dda260ac8eaa45bc1cb480a1c4592946fde938b697a9b18aa6960f0b9ffd86", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1174235220043559056116285440" - }, - { - "id": "b9213f3c74193638de215d351244d25b915693892fde6146f745e472dea7d346", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1150565663486321370666106880" - }, - { - "id": "dcdf6edb373519a7e248ed7bc0d3f3d791c60a321e7072fdecce3b878fb1425d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1151397588290881942190030848" - }, - { - "id": "bdbf8c9250ccff60a1d1455c58b47e52630d23dea5023c23055c250dae2f257e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4266297870402601401987366912" - }, - { - "id": "38be49c585ab2a1f9dfac0886148c12badf586048ba81232a7948838c1d19589", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1148598318086260165271617536" - }, - { - "id": "4a45d124588e2ef899e2e5feb135c97d2e5f0f0a7e49b123a6ce8c3852ba31d1", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41886395850374112743044153344" - }, - { - "id": "6ffc89c69408259e3696704a745321456428047d065078a382181e0f4ea7097e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "8b7dbafec826fe6bc63977ac08f940cfd4a52b00cba0db39685745900c6b2c75d0744ee9d35d", - "value": "1068624685988467949729546240" - }, - { - "id": "cd2c5b63ac65e757db995bd75b930a1064ee978534c93865095c55d8b389e025", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "5017823329671785054436589568" - }, - { - "id": "d8c1da54bed015bb14ab4f9a24d6d163b4ec3f73727aad8b1d6821a4bdab09d2", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1248583195381423021781680128" - }, - { - "id": "d9f7784d7ae603b8f2e5956883c99621d0a5a6acd3bfa1b5171457dc1b1b5d9d", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1081471528253314543357788160" - }, - { - "id": "e6eac8ae75e0e1e4601900047a23cd92451e7a366fb77167b2f3fec8518bd07f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9a8b59f0ef65cf003b697fc3a4d5e608c8dc7fd95dc9c6b202e504b61564cadaa4e30d0f3330", - "value": "1052192188945197903167586304" - }, - { - "id": "88d0874ce581bfe80e460d5bd455c85f9ff83d92da75f20a3beeee9694b006c3", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1938959001101607446712942592" - }, - { - "id": "18ae70d3bbe7a5a471f72ef8a9ea875eae33c0b08aea57b74467437385b4e560", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3268650708935181308348334080" - }, - { - "id": "ff2812a4590602dc509787fb20706665e805ea0a1d0748ed7483aa7eb4c3167b", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2182161843716267754379018240" - }, - { - "id": "496d56db3f89faa17374c8521f4894006c4029f5f7b7e92d10da01e8b4fe27ae", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1025202959629405900360384512" - }, - { - "id": "ff0d9a42f01df356bca5e1fd9692b5dfec3fa18de47da3eaf5c99b97a3fd2b8c", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3820915662368056334748745728" - }, - { - "id": "81bd9a5740c10860455d7a72f7f9a67beea62ba30f8869cee3eb88fad04b15af", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3bba69c5bf5d5a48f00a423f2711947babc5a9c5da2bb4f358c9e328d71dc63d0308643f8d8c", - "value": "1005949053210405015207673856" - }, - { - "id": "d055d9513b811586f0afa5bbbbf4f6224a81b3044e961a0ba5d312f6ce38f0c6", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1048148987141314238991826944" - }, - { - "id": "150c409c83d1bad206a7cf0c601ef5ad3b7d27c7d6ad31a98548f57f8d127a91", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375", - "value": "1098616007466258046068457472" - }, - { - "id": "265c5147c4be6e9a5b8dc4159ffe33b81e8a4adb6b20140cf07546b19a3dc92e", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3861267407361119932586655744" - }, - { - "id": "f19b96afb0675adb9846bfd5912a666f922cec71c439bbd252d5830d414a0904", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1062715234779166641997217792" - }, - { - "id": "81cd64628bd465d2d1d97c468de7b8cb0bf6e02e947f0694488eff516ff7c0de", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "2e1ecbd6bfbeb8f08840cb236435a23834224f3b3dc4e0820370fab9623d10b56a3622dfbe8b", - "value": "1053339951058698486201253888" - }, - { - "id": "b29cd2ef7ff595b9b642ecc4f72591ff9c83331bb18fe88df303996e848bda23", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1072573686988478133827534848" - }, - { - "id": "ece68d22d598e33875501824d22f81526f39e0133dfaf1e793b0887ff1cebf46", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3823356852223040061924442112" - }, - { - "id": "c27577749a969f05727439f57755fedc6c500a0e219d64a2f4fc5e4f54f0a803", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18198081925593475380993327104" - }, - { - "id": "0d7992f2c5e004e18bcacfac71873eabeafcf219741f055fc6739c528e125e75", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1891535660134369320802189312" - }, - { - "id": "51a2d1ef8203cfc3cc25526503834e3ea8acfb5be4291341c95e5a83acaaf0e5", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11263438707394770798026686464" - }, - { - "id": "0347cf9600383f2b07bc1c21cc87a98570d3228c050eb82d232afaaf59fb50e6", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1105236158924096594870534144" - }, - { - "id": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2912421435067960091385790464" - }, - { - "id": "ada59fee4a4dc83429159e580ba403f3e505717b8b966a0412e91af48ad7f8a4", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1193825020406170004301545472" - }, - { - "id": "95fe43a683a0ec8e6b1c405547d2ac6c2044ffcc031e8a98b5dfbf0898ee4dc4", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1389267036158522974219010048" - }, - { - "id": "ecf28fe2d0f92da95fbcc27803ea679511e1fd8d2b27bfa74c36b128e7eb555f", - "fundtype": "siacoin output", - "maturityheight": 218141, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9550376174234568500017364992" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218285, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "JzC6yLePKdaDt0KzHzGJEbb2YoMEe+khznKouG4/fb4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1110206881468425978654752768", - "unlockhash": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770" - }, - { - "value": "42165424696558899438049820672", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1201176352078592734864080896", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1241574752154124692052508672", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1816551693838024369057562624", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1699212714979064308954038272", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1038301828227630782458888192", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3235414236472949114222411776", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2240568149393019716702830592", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1038043924610462152963129344", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3934928092898558241675411456", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1439337281495486009182257152", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1226819373526985454957101056", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "3820884865182965538335227904", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1226821645644188531665141760", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1004451976771542895957573632", - "unlockhash": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d" - }, - { - "value": "1338014971084714900606418944", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3863532573249455363960340480", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1160409049329047627739693056", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1468653015561645799698857984", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1127177537315115736176263168", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1714861162419630144972914688", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18765409683826359068075753472", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1025640312284402150843351040", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "11495570538814295031058268160", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1114704056363151759662645248", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2948827743243064753510154240", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1044755545130162395649146880", - "unlockhash": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04" - }, - { - "value": "1205838389900630170712145920", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1446006423718073891265970176", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9890804837695473921516634112", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1002009304874221459840434176", - "unlockhash": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965" - }, - { - "value": "1027880515407251080458928128", - "unlockhash": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018" - }, - { - "value": "1119645551673784001143242752", - "unlockhash": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39" - }, - { - "value": "1017108436951120399181283328", - "unlockhash": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0" - }, - { - "value": "1113557718804747159384227840", - "unlockhash": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a" - }, - { - "value": "1231817552925784193182466048", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1037630820096147722051387392", - "unlockhash": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c" - }, - { - "value": "1443479476254145327355920384", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1012685359995151851082809344", - "unlockhash": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28" - }, - { - "value": "1028007149007996251043790848", - "unlockhash": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914" - }, - { - "value": "1976611925203313093483954176", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1683835565882424624824713216", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1061775339933759900370501632", - "unlockhash": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0" - }, - { - "value": "1039323952808849451635179520", - "unlockhash": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3" - }, - { - "value": "1123019477995315940667424768", - "unlockhash": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0" - }, - { - "value": "1075305186963165410935701504", - "unlockhash": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401" - }, - { - "value": "1014162182871062182190383104", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1010995731362136819702956032", - "unlockhash": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda" - }, - { - "value": "1013905463444253935208923136", - "unlockhash": "19199c41f95e3f603f27ef61e839d4a42d5f2710e228e63eae20c57b1332c8e571520b606dd4" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Cm8FS/VFWXmbt8N6HPD/yb00j/24j2+7UmskOPbEiJw3Sj7S8CS4Iq00HemL+uNmCPY53qL7uXzhfFM/m0mbDQ==" - } - ] - }, - "transactionid": "6f36aa9328cb48eb7329898cf6d812b16e27655ceb4c89f8cfbfcc150f0282af", - "confirmationheight": 218148, - "confirmationtimestamp": 1564495845, - "inputs": [ - { - "parentid": "27059b92ca223bd1d92cef1b0121c7e30ef5caf4b4d5b40d52c36ff9980a0799", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "329c5bdb431914963f423b430ddd460cb96564f2aa60f267c0a7285df4f8b5eacf4bb37f4176", - "value": "151082921017690773478945521664" - } - ], - "outputs": [ - { - "id": "b2921fa0cbf9b4a549312685c13f478cb5fd5236f044a4b13aa289b7b04b7d30", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770", - "value": "1110206881468425978654752768" - }, - { - "id": "5f20b98e41989eb2749a93cb9d2e0a0eca037997d1e2ab98c3d5f616bda33ea3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "42165424696558899438049820672" - }, - { - "id": "cfeeeed31efd8bc3fd68780eb44656cc7825c1afb295a4eae240b5172c4fa62e", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1201176352078592734864080896" - }, - { - "id": "da7d224834c58e4cbcc7d22a8df9bb21340253bd89d911056e4270f365a520e3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1241574752154124692052508672" - }, - { - "id": "1e88946401674a10d244f3305fe28d5e8466019406406802f7d840689ca42c87", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1816551693838024369057562624" - }, - { - "id": "0200445d4787bf9de208842b50a73832b82875b2466d87cbf629bbd168105d99", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1699212714979064308954038272" - }, - { - "id": "51e3df6132cee27cb5f6d0ae259d0c1e8117e9bcc0582188b640a3bafac450ae", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1038301828227630782458888192" - }, - { - "id": "53ed139811cb0784dd5cb16b772f7fa93c5c11f3a362ebd107b7bc9d8dce48d3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3235414236472949114222411776" - }, - { - "id": "07b467907f575fd193f0bf51c5d38ad7dfa6395f8b699a7108097016e55b72f6", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2240568149393019716702830592" - }, - { - "id": "d4354b66ea7d93f29619e3b48443fa2fdca5444a8e755384ed4f26405276fd37", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1038043924610462152963129344" - }, - { - "id": "f1586a183d625ec7768666a1b4e711229c65c0d1b87530c5d9dffe0011eacb5b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3934928092898558241675411456" - }, - { - "id": "5ac1e1d8b2487df099258584b0e0e79a3d1f9a052a8a9c76910cbc4f24e45802", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1439337281495486009182257152" - }, - { - "id": "20946d2c72ebf7ba400652caea6c2834363e73ddebe7ad08cc0e505fabe87625", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1226819373526985454957101056" - }, - { - "id": "0066a5e54651f7f427f902b313f50f8081233453f6016695067a79a61c2f989d", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3820884865182965538335227904" - }, - { - "id": "3ec59f076c5811746dacb730ac757bfba6e9362588de9b5ae9f14d2a4e1e7795", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1226821645644188531665141760" - }, - { - "id": "13a4d2375669c782c5ec28cc675df9ab55dc23d3e0511051420b0c620f49d74b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "89f8f2e97926084db2a685622782b11adecc1edf3ae58cbe9cebc07cb5546282720b48c3f20d", - "value": "1004451976771542895957573632" - }, - { - "id": "70072268eaa0673a2baf1e0ccad70a1ec2dc26dcb56dd8b858f79d91569a4838", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1338014971084714900606418944" - }, - { - "id": "90bb875b5703c263752493bccd54504975599f6aedb566a6d573853b55f1e954", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3863532573249455363960340480" - }, - { - "id": "6015caf0f43ce333a674aac145a29793686b67b7871b5ed1c71ff2a5fb03a0bc", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1160409049329047627739693056" - }, - { - "id": "d9a7fb5def9bef0e9273f4265a04a3bbc99331edc9df483fe5c7a25dd588e009", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1468653015561645799698857984" - }, - { - "id": "ae4f9f8ca0d6c26a8d25ae656f135588b90235559ab728f03197f0a725cc852b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1127177537315115736176263168" - }, - { - "id": "180bc1aeb3737d0dd98ff9db69dd12469058f075da0350303b9d9b135e5e3fcb", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1714861162419630144972914688" - }, - { - "id": "ef6b5d3006d68f882381650ac14bbb43ae2d80a29f840217bc9d89770ed23788", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18765409683826359068075753472" - }, - { - "id": "754e245831c8ec2e857bfda4cf31209d08a4f21de38530d573451c416effce7a", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1025640312284402150843351040" - }, - { - "id": "d446f6d89f2d81c64ac780cdf22f672ff0daabc30da74b0cce38a6161637bd5c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "11495570538814295031058268160" - }, - { - "id": "c973c64a063397ea312b1ed2faf18423699217533360602b3551affd402579c3", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1114704056363151759662645248" - }, - { - "id": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948827743243064753510154240" - }, - { - "id": "a8562ed63c63110047fdd30e5cbed7b82f7ebcff60bb8bc0da6dbbfc6e8cf16c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "5c0461f55c9f9a9a4b1f8ed00eccd34e6fc16fc4f9d135c4932aec19d1e6b4f70242b4b58e04", - "value": "1044755545130162395649146880" - }, - { - "id": "69603e94d4afe6cee07ffa67d8d6898537f69b39fe1f54109fdeec3c25c68c0c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1205838389900630170712145920" - }, - { - "id": "8eafc3c73d57ce510968ff01c51c5f815db55b57c060d91d23251695d743312c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1446006423718073891265970176" - }, - { - "id": "d23ed4cf3ea039f30cddfe947ad5a6ad3ab33c207a5e4cc978f3f99a0fcb4172", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9890804837695473921516634112" - }, - { - "id": "b2df1f821fadf07b8a4bd71ef2aea31923e656badc7da4cf0d155686b31c0af7", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "7c68f8c1a54afeb2076e1afa88fa73d8c36f912fc9a037c5789fb27e642e50e2449b22c54965", - "value": "1002009304874221459840434176" - }, - { - "id": "9cc742f8a6dd4dcea96994bd0641b48a31989dbdccb97fe6f671c0bb7ff68a2e", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "ff96f0ac34ca379e6fb72b34616686626283fc60b4929e77a5a774e841c8f40d71af09eb7018", - "value": "1027880515407251080458928128" - }, - { - "id": "e7ce0baccf74b9da48761e0e1cba2986e75a48bd8b3dc8c89088a9daf7606b42", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "e8b9f450bfc6b978d29c9301b6ebf72d15ba37a4292f7cee89f0b09010d785038f14cff77c39", - "value": "1119645551673784001143242752" - }, - { - "id": "901d6301edb8d0816f9a733e3d61921930cd9ec281593d7c4a8050f1c4d52dff", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "3df00d2bd0c6e6bc2a76296af162c05f213798f106b0942d287cde813aa87b31ac9d7b3a62b0", - "value": "1017108436951120399181283328" - }, - { - "id": "05233611561afd628ce85fb697a273a018304eed1dccfc480130c986832aa733", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "892a28ad9779cb30b7856772467b49f59619f34e6760a5b76369ba81e787fc9049f16b6e602a", - "value": "1113557718804747159384227840" - }, - { - "id": "2863e7962ec1e37b29594462588804ab8cbce58ef4070831d93cb9c61ce23baa", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1231817552925784193182466048" - }, - { - "id": "d1b5b85228cb8dc96932cbc898c105966edd688d55e618c771c20c9e5178f439", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "de487029f97abd9479853c18d810777a0301143537470a140629b997b39864df62fc32859c0c", - "value": "1037630820096147722051387392" - }, - { - "id": "f4892f478d16a23d05ff9a9f1a463650f3af9e5c185093512a8150e20372f02f", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1443479476254145327355920384" - }, - { - "id": "e89baabb0827156fcc74b2398fb88187aa6c58f1dd0b1c05cba571cc58484bd5", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "700e4050b61f5275d1e90cc37f6bcbd456dbb787822680d99276db48993636edde74115f8e28", - "value": "1012685359995151851082809344" - }, - { - "id": "3de60c270b3b8ac589117d908ff7f98f8db3f4b09aefccf3744e974ba2ac0cae", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "77e0a01cda134a8dbef3a5052dffcdf5779a11be0443df9ed2d4fce2f3b8205b79e8044aa914", - "value": "1028007149007996251043790848" - }, - { - "id": "73bc8652712b01580d7c53706964b02b5a1ffb4c84269bd1bab1970859bd8db7", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1976611925203313093483954176" - }, - { - "id": "0a2a6aaea0e216588b78c3514eb27ed446f89fd8f73b1fc678b121097b4c390c", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1683835565882424624824713216" - }, - { - "id": "8aa4ddddf917d26f43017cbab414062e7c3478501a588659cbce62747227e84b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "4cf569e643d7dcac1852e581da0b116e80c91afe84fdfb0964ab88e538b42322d047dc5eade0", - "value": "1061775339933759900370501632" - }, - { - "id": "4b3d24a004f8dd4ef4de7e40290e5a78a0960d02cdd88d8ee5056943d2dabd53", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "f1e30783bce0f2d678e0414320e2818464b6e0f0b4eed04aa9a69d990a364f68a6d37ca6bbb3", - "value": "1039323952808849451635179520" - }, - { - "id": "a3342add2b4ce9891aa538834d4fc47ef0183f29cf90c36a1b85827dde91018d", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "64ec4b5b65971952d85d65f126eae5f7e81c21daa317d528284a900fd35d73029b228e0987d0", - "value": "1123019477995315940667424768" - }, - { - "id": "58bfafc8d27fc39786776ab441843119da3dfba7d4abc975b7369f8533029778", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "6db387a8a2b606641c243430ab5c98e541babeadabbf1248a2dd4ca92dd90c95ce9d4f3d5401", - "value": "1075305186963165410935701504" - }, - { - "id": "1e10fa8bf503c00bbc6b7190d2e9222f3c8e9615192b0a2b700c139956edc49b", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1014162182871062182190383104" - }, - { - "id": "168881e1f4ad448b71d9fa5886243ab7b66081361ee82996f3d9a727e9769077", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "940e8e216b90a10c25d13f7cb06761f55a824eb715b2d2c1d2b4b65d8f61180670ff742cdcda", - "value": "1010995731362136819702956032" - }, - { - "id": "277ddfd73ea0cf90c5a1ccc428ecf8e865ac30f219976c72cd60ccd8de15ede6", - "fundtype": "siacoin output", - "maturityheight": 218148, - "walletaddress": false, - "relatedaddress": "19199c41f95e3f603f27ef61e839d4a42d5f2710e228e63eae20c57b1332c8e571520b606dd4", - "value": "1013905463444253935208923136" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218292, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Z/ip2JjxMTf8lQ2+VfKQMZVUnnwbaMrZ2UUtkTjAXu8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1055405816576638355856818176", - "unlockhash": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9" - }, - { - "value": "1018219709985862986487431168", - "unlockhash": "ab023065fd79b2e17520535ffb14d34ec70a0ef0d79de5ec99b46f13b12221270ff01b1391e1" - }, - { - "value": "4893368623885923001883951104", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1146133212539413782851485696", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1012653015108945540246913024", - "unlockhash": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc" - }, - { - "value": "1316825142815521360965009408", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1001841710375431137905786880", - "unlockhash": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29" - }, - { - "value": "1332969949140630643315048448", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1008929133948260390246023168", - "unlockhash": "01479de8b9481d4bc97788f7430a1ec4432b8e8a5a10a9f29c4885a624fdcf09ed050f1a9b64" - }, - { - "value": "1149167605567830791286161408", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "1908543865727342253654933504", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3293087730598892404811497472", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1122958780110194777384812544", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "2136541899365715622781517824", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3794184106458407257077972992", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1237578790308311142063669248", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1098358047428224033624686592", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "3582757644258132281104793600", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1055531877853760682519429120", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1308319616968894309952651264", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3766730614087342789517901824", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "18178502001004305130813652992", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10853957301075097231351087104", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1005467042278728078209318912", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2718360009967921243757740032", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1163493030018786815654232064", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1355304730035576923460993024", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9425247963712353321179152384", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1005252607016734850552725504", - "unlockhash": "b5def467ebcea8b002e1831a7e581af23980c79c27a235138b1862da710b9e768931cfb255f1" - }, - { - "value": "1238622496660744487253835776", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1042254564237524494135853056", - "unlockhash": "6518009759da8bfdda4c657bfd6a7e27cd0d67cd81e6fafbd70c486cd8a596c0de366069e700" - }, - { - "value": "1074988817210231013273763840", - "unlockhash": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d" - }, - { - "value": "1015927314128149468286418944", - "unlockhash": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28" - }, - { - "value": "1069489135678843531775442944", - "unlockhash": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806" - }, - { - "value": "1101264161370991974376800256", - "unlockhash": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359" - }, - { - "value": "1119131399593728760240144384", - "unlockhash": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c" - }, - { - "value": "1046438154270390005185970176", - "unlockhash": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3" - }, - { - "value": "1006613004813807509149466624", - "unlockhash": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6" - }, - { - "value": "1281503224963736416082198528", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1848788170105921784787238912", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1033285360588524357953781760", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1193278822592791626154770432", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1217258967546194392445353984", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1001837777307318911532793856", - "unlockhash": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79" - }, - { - "value": "1087391974987801579189436416", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1056858932058454638405828608", - "unlockhash": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf" - }, - { - "value": "1037745353667145505538048000", - "unlockhash": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d" - }, - { - "value": "1064611062621202194315608064", - "unlockhash": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d" - }, - { - "value": "1044882115011611563627085824", - "unlockhash": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1" - }, - { - "value": "1156914233135541746316869632", - "unlockhash": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "KdiTDqtX4CajEyMVu6+NqSykjm8H41qvEhCwy7e1ag3CwFRCFBFTUGTyKgJuqf5B/XVN4jFHa167z52Z2pwSCA==" - } - ] - }, - "transactionid": "5db74f470878f5834a5ebadb636392dbcaaa26ae58d87b6beb2fc18b0a62cf97", - "confirmationheight": 218155, - "confirmationtimestamp": 1564499433, - "inputs": [ - { - "parentid": "0a09693bcd1ac318c42bf6542df6f8d3990b4080a13afce7515bd4be154013b3", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "0e210d59a27dddd2fdc394a33414c0737d02908696d7882ed5e6e0707e12486e83548284ac96", - "value": "108685016620769835100544106496" - } - ], - "outputs": [ - { - "id": "b96e33a43c210cacf5ff5b8c89a1f496ca89fd5280fdbf5b442d389db17fcf9c", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "f74a0f8b0a4a5033244939912db25bded275b52494b6b3f2c7687dad03df0c810b5b41e78fc9", - "value": "1055405816576638355856818176" - }, - { - "id": "3251e4234ae7f550333d7dd013bf3d3883272607c325a27bc87cf5dd12668a38", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "ab023065fd79b2e17520535ffb14d34ec70a0ef0d79de5ec99b46f13b12221270ff01b1391e1", - "value": "1018219709985862986487431168" - }, - { - "id": "106056d3bae025333d483c9d715362dbb5f498613a546e2d7475685fd1d1cb69", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4893368623885923001883951104" - }, - { - "id": "a33b428069da4bb8f405752c9fd8b4cba5e906a5f6f9857fc90338ba9501baa7", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1146133212539413782851485696" - }, - { - "id": "43da7ffd4356cfc7af4618b1d456f85bbb416c87e174a407bea548c64c4621db", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "dcadd5bc9fdf013f321e92deaf587e63ea1c9fdad6fe02bc8280fb309fb3f5613e4028e3d2dc", - "value": "1012653015108945540246913024" - }, - { - "id": "1bc162855c019f84cab1c1548a317a018b54698e41aa8922d5e19f64ebcaa8e4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1316825142815521360965009408" - }, - { - "id": "c934c0dd8a6730bdbadc584164bbc67c2b588196bc23105a89f92ad8cc3a11ae", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "ced3ca2b34109cccd6ca85e006aee55fdd4240fcd8eacb5e00203f1d63ec595e1ef0f79c6d29", - "value": "1001841710375431137905786880" - }, - { - "id": "24a40fc7ca8858c55bcbf7676128f274824e58e736c4befa959c16b1d4a6f764", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1332969949140630643315048448" - }, - { - "id": "b8e1636ae1ff770202753af54f2f0f35a8969c8b8c444df2a9452008b6f6cf59", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "01479de8b9481d4bc97788f7430a1ec4432b8e8a5a10a9f29c4885a624fdcf09ed050f1a9b64", - "value": "1008929133948260390246023168" - }, - { - "id": "a1ad8577666834bd5e6f556b90ddc45de53fdbfcae71902490c4565f94d661d6", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1149167605567830791286161408" - }, - { - "id": "5319b80b4e6e6a9d395ec61aa17f00239959fefc3e76514a9dcfde3af7a5cb53", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1908543865727342253654933504" - }, - { - "id": "6a6f53e6547217f8807352e795f9c60e86e557ab1ed3b8370128a9cbeda42e51", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3293087730598892404811497472" - }, - { - "id": "2d6479a9459d320a895bd56208acbc42c8f1a1e20d5c765c15fc8d2817edc607", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1122958780110194777384812544" - }, - { - "id": "19291dba04c33fa8c26f8b42c8e3d0479a1c972f951b75f8b76c1010bb7b6226", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2136541899365715622781517824" - }, - { - "id": "63d9ad53d556b63a63fca6186542a50e7e28d04db47efd8f48168ebff03a33ac", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3794184106458407257077972992" - }, - { - "id": "85636090506d92070447ae59b7e23787595d8a3e6c6bc307ce2452d1ece8aa6b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1237578790308311142063669248" - }, - { - "id": "b1f7a7836154ee425d82526e991a3b127e31f199a483a268803a2f3fcd2bfcfe", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1098358047428224033624686592" - }, - { - "id": "50ef2460e675442cfe98a36218acd9fdd2b2c19381f74986b3009c9203d5f77a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3582757644258132281104793600" - }, - { - "id": "10cbba34f091c81b9f9d43f1755f4b0f18c8e4d6dbdf9e32fdc2ff5dbc17a46b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1055531877853760682519429120" - }, - { - "id": "0299754092054985ae77da0f7c237cd7bbff643ca3b579c4b67e717ae491267a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1308319616968894309952651264" - }, - { - "id": "d3f3ce26702d0386747dda0569079bd4baea2045310dd0f4d28f2251faabf5b6", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3766730614087342789517901824" - }, - { - "id": "073c1aa63711ea5449c7599ca924d6b4f9f50b5bd986c86b2dd69ae0edf06c41", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18178502001004305130813652992" - }, - { - "id": "1cfb0cd989d38ade1ac0bf106f7a70f4cb518f5508fa293672f48ea51eb60722", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10853957301075097231351087104" - }, - { - "id": "205afc0cef0d655d55e0f97ac2eef355a55113605dc08620ed3c50c017be2f16", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1005467042278728078209318912" - }, - { - "id": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718360009967921243757740032" - }, - { - "id": "6c40d5808f8242ea91762d51b689127a90bc4601f67dfd1eb60ad5a506355be4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1163493030018786815654232064" - }, - { - "id": "876397ada6680a188b579fe497cf9651aa005696f8829ec6be6cdb724c77624b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1355304730035576923460993024" - }, - { - "id": "eee9701f4de7cb64fc08dea0f56aca0632a8b466a995cbfa9affa83b4c352a28", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9425247963712353321179152384" - }, - { - "id": "b9c839ab5b760db6ce28e8adb269f72fb71c9451bf0cf512980d042083baf5ac", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b5def467ebcea8b002e1831a7e581af23980c79c27a235138b1862da710b9e768931cfb255f1", - "value": "1005252607016734850552725504" - }, - { - "id": "7f0fc424367d6d2b14613130ce22f0784c2e486c5c1166e3fadf07cb86a7dd4f", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1238622496660744487253835776" - }, - { - "id": "c923c662b23a67a9ad3c92776a6e2ff55d540adf733995eefc0096ebf09dff0a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "6518009759da8bfdda4c657bfd6a7e27cd0d67cd81e6fafbd70c486cd8a596c0de366069e700", - "value": "1042254564237524494135853056" - }, - { - "id": "39b1fc39becffa36a3c248960d31dda557ac0697cf0dae8f41c70d76ecfb820e", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "9f7aee9a3ef2031463f6a1ba51c18e0601b274c56cdbe3c2459ef4db468d589059326748796d", - "value": "1074988817210231013273763840" - }, - { - "id": "48decd154e43197d87e45872b77c3a76de43344369362f344dbf9cd13367baff", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8e9aed47fd9cf46a9d8839ca77d2dd85cc630740107496d9fcfd4b125b59e316106eaa705a28", - "value": "1015927314128149468286418944" - }, - { - "id": "26ec6ff0ba4e1ffcf3733af8a0ce6e210412b4b2376cf7986c72eb7782e7a5b3", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b2cb874fba215385594420d2ce00910737bc244fd8f85462beb4984205ae93654e774a29b806", - "value": "1069489135678843531775442944" - }, - { - "id": "348c5ea79cbf5b85301939b9d40a5bfe6b4756c00ded25e73b37f68a153fd071", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "517680f5e555c88c62b3a1f62601fda62f21284ee86ff149d2802de6b5807bee875451aa4359", - "value": "1101264161370991974376800256" - }, - { - "id": "b0fccc10a65bbdb6889a3e318cf5e68d4d4e5662e68c703f102bd418f2745c8b", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "06c19bc8c5fed2f5558c6ec81d0b2fee2a54f52670d0fea1b056aa1e1ac329cb3f79c25ab10c", - "value": "1119131399593728760240144384" - }, - { - "id": "cb611e191b0af6a732689722f00bb1a4e30104db88ed5b7309977c31095370c3", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "d86f0cf88167cafee68c00470999c2f4ab38e8fe1ec0b531abeb550dd55672b95496224b42b3", - "value": "1046438154270390005185970176" - }, - { - "id": "ca9c93ae6092f02f210dc8264b7b461b1d1fe0578f3d64e1a5e7c9a141973c67", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8b59e47e37ca724ce506faaabfb0e8fb085de2faef920d17170db7a9d26562775f5f5f6967b6", - "value": "1006613004813807509149466624" - }, - { - "id": "00640a18ac2911b9e578175535ec6d3d93aaf72824a68de2b3d2a217dd2f98d4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1281503224963736416082198528" - }, - { - "id": "545eab99a898777304c7ba96a6d2f7b34d862ed5088c9b145ea69e6aca341f1a", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1848788170105921784787238912" - }, - { - "id": "76a442463b4153bd44b09a2811553fceab3b15ea54915f7ad44466d62d8e9b67", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1033285360588524357953781760" - }, - { - "id": "a0639fbee216f2c67e013c0f495b9e5eaae5dc90877a9ee2e7a3a3219e4a697f", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1193278822592791626154770432" - }, - { - "id": "90ffd6776476f1b154f5bc644076644cd31f34e72cdd9b1049b5725a23f1c3c4", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1217258967546194392445353984" - }, - { - "id": "f27e3e7188b2e64166103d6260a35a54359c094b9a9c932efbfae22f63366af1", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "e3aef9c36f66354eec69d6eaa59c285675406e6a1bd1dc79292c193f310f9a4a47db6f48de79", - "value": "1001837777307318911532793856" - }, - { - "id": "ab8ebe38d62bdbacc0250a7c9eb39726d1445ccab18661a2e3fdba884dddc208", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1087391974987801579189436416" - }, - { - "id": "701a244e70cf9b6a4c2efdda0782d1ab457845be84b32b0da4d999a7dd973ced", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "b623da15a6cd252c1a39914f1d0647f1ba64ac3aff6fe109c5bf3e58d557fe16a44119dc51cf", - "value": "1056858932058454638405828608" - }, - { - "id": "e969d00deef7a0234069ffbff762d10692ebeb255a96daa11699fa45159a8d11", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "cbabde30bfc82d3117a6cf0dba5b0cc9be7e0d06fdcbe282eb937887ac4dd4415d376eed690d", - "value": "1037745353667145505538048000" - }, - { - "id": "f68b49fb1200b94d0bfbd510bf56ad7775c2efa21c321c3a0f04e6a584885888", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "3032798a5fbf0b30936d1bedc5df52c47745f69f1d5257d5c9df6858945f584e9dd21e7cdf7d", - "value": "1064611062621202194315608064" - }, - { - "id": "acc84189241f69fcd323c33d81557bae5ae8f9223a3f7b333f652d47a3991dbd", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "92a4ba3071fe39c29e3ee33395434235d2535db3dee77953f429a904bf00b4ffe61433abcad1", - "value": "1044882115011611563627085824" - }, - { - "id": "6db0c9211939b7e8da126cb4c4d27d6cb8ec4d8501e1d30a40f35a5264eb7983", - "fundtype": "siacoin output", - "maturityheight": 218155, - "walletaddress": false, - "relatedaddress": "86b83475e5b7151cd4c54c37dca0e764bd72c1bd0e80ff27067604fc17f758ee75c473ae0ad1", - "value": "1156914233135541746316869632" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218299, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "71xZ+XbgU8fXgPrNpdPFuMpzi5Pe5u084Cc/vIAj5mc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1011935799697321324168511488", - "unlockhash": "7e89f6b6c8ef9783f914a88c8364a068c614418485254609dbe8896221770815a14ca20fcce5" - }, - { - "value": "1090368775388451690683498496", - "unlockhash": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7" - }, - { - "value": "37965727514296598039942397952", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4733239865414433023731957760", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1088813591116661420411846656", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1043592877684148098300641280", - "unlockhash": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c" - }, - { - "value": "1701003486126217511806435328", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1568644022517849651956154368", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "3151076475422297164462686208", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2008191788962486779281145856", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1892879230784990880345358336", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3501500223930558046380490752", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1237060621925777528017125376", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1031689588666059452350726144", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "3389636914840160055641243648", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1042036443346836301694238720", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1103075090531415892767637504", - "unlockhash": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52" - }, - { - "value": "1157830357216368517753864192", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3478594268845826360010080256", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1636047347011343842944221184", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17297207164344531950369767424", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1854863517379297697821884416", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1005337541277031333923389440", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "9882317906971850971736440832", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2501662376093900483317465088", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1107860954266315981718552576", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1282056507853257963435196416", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9148481984811439102057512960", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1035756740931787642815905792", - "unlockhash": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21" - }, - { - "value": "1041096058505191371584094208", - "unlockhash": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87" - }, - { - "value": "1093203973906419186821300224", - "unlockhash": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc" - }, - { - "value": "1052671524223624650698522624", - "unlockhash": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7" - }, - { - "value": "1023789103598552473111887872", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1064768386901506205016129536", - "unlockhash": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53" - }, - { - "value": "1364134864227147612488204288", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1011050898017959812278452224", - "unlockhash": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4" - }, - { - "value": "1770222527341699463265648640", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1541642652254395394373451776", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1108958995201081605705170944", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1002135222559044973068550144", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1037185431443324387067166720", - "unlockhash": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f" - }, - { - "value": "1140443091409802961814028288", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1873086571793316044718735360", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1109883697774666611896877056", - "unlockhash": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa" - }, - { - "value": "1013547324825877055552749568", - "unlockhash": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308" - }, - { - "value": "1444908805135031604835516416", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1044866763884341432909398016", - "unlockhash": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8" - }, - { - "value": "1140581894580861084021817344", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1034291906344512452526342144", - "unlockhash": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228" - }, - { - "value": "1143734892382212570302382080", - "unlockhash": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Vn2tbqK0OxzHgfrmIVhvfPyoBED1ZhN2XlgO3eBBiWRlaGUPo/MPWcrd1kwMuv2YnzgHsxoNwvKy6T1Lu/zdBA==" - } - ] - }, - "transactionid": "f17d7d898f1c284c2b8b52e5625c2899b973fbb9e9c32bccd4622938d46499c5", - "confirmationheight": 218167, - "confirmationtimestamp": 1564503091, - "inputs": [ - { - "parentid": "bc5049cb166af4fc8b97ad92eadd56f7fdbae4e40fd0b9a2060f2205401eec46", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "6986fffb85e29d11f7ac8d8ef1809c714e995c994d0beed9be428fb42a3f8434c823e3bc98d9", - "value": "145004933563965783663902801920" - } - ], - "outputs": [ - { - "id": "18b96560a6bf9e23eeb8d5d16c25e0e7c4084af3bf555aae3c81a36b830c542c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "7e89f6b6c8ef9783f914a88c8364a068c614418485254609dbe8896221770815a14ca20fcce5", - "value": "1011935799697321324168511488" - }, - { - "id": "687e6e88d4ff9ff4840abe2f6815ed72bc07ed441b4c1c57ad842823e6c267b9", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1fb8473c681ce8aec2502b1a3773ccf00aca3d384c7fdca934ed76d669f116ce58b517d22bc7", - "value": "1090368775388451690683498496" - }, - { - "id": "457d46ac753a34894ff7d0a9727961ee616916aa6224534aeae3a52ccdb52e17", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "37965727514296598039942397952" - }, - { - "id": "bc81c8e82b584308518abd672cf5fabf84de7f4ac19dd5effc22f84975e6ec5a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4733239865414433023731957760" - }, - { - "id": "aea85c1cedfe0e5b275e0f345228b6011adf7f36cd37b7c8749775aec08ad5e1", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1088813591116661420411846656" - }, - { - "id": "6174d477c1400e6dcacbb5a5b855bb42ff503db790bd10cea0e5161de7794172", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "087d0215a6f0be1c70e7a0d7b549e82afb13911cb94ee34079dadec757918948bc8f59e8709c", - "value": "1043592877684148098300641280" - }, - { - "id": "e9414f75292fa9d1c061c6667c51ad7a525808de5c400e536aa20a992b511485", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1701003486126217511806435328" - }, - { - "id": "07c807cf22f0fb91a1300d3b6ba9fb277d318f5468c3a4e3e3ee6bbfd2930e2a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1568644022517849651956154368" - }, - { - "id": "11f496f74413c9ea05348f3f804f02c5222324f8a273f6af4313bc43286237f0", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3151076475422297164462686208" - }, - { - "id": "06fd5b80bdb4d942afe03d431143bf9116b58b43d88b0c8fc2e5a040d8ad77ef", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2008191788962486779281145856" - }, - { - "id": "4b8d98edfcd1c9c156574f1a74eb91249eb2b23c8cd05b5aefaf99ec883d970a", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1892879230784990880345358336" - }, - { - "id": "1c621fb69d4a84c15e7c7a54845916637583f76a4163401d86baa4cf9246d182", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3501500223930558046380490752" - }, - { - "id": "03bfc5c97ca583701263ea9a76cf1763f8ca9b396562f86707e1e09ff922002c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1237060621925777528017125376" - }, - { - "id": "41ae2ad0a36428ecd15c7ea128b50e73f0f19eefb94af759c548448b1da6e342", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1031689588666059452350726144" - }, - { - "id": "1c2e24b7f0a9e6a5994dc07869f895c293375b103ace3c7de344d7a20e445c9e", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3389636914840160055641243648" - }, - { - "id": "f14a59c657efd8381d490d0040d0147c877e33475b7240702b531fb6bf938541", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1042036443346836301694238720" - }, - { - "id": "36330a3af0f259998611e09d6fe31afddc36076f6f913562462aeecfaf65c20d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4886283f7796a3a7fe0190b591a0c5061566baa2a5a3617a2cc59dcb8768be7c381c7d936d52", - "value": "1103075090531415892767637504" - }, - { - "id": "4c7a3e40710ed503972fd915889464ffc72d7bbf380e2fbccb89d5db1dd4f34f", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1157830357216368517753864192" - }, - { - "id": "ea2992a514d04605c95387749c80a19ea92a6111042434e1b7b315a441ebf97e", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3478594268845826360010080256" - }, - { - "id": "dcede26c9fb1391c75d318dcbdb98f1f34951d29d0a158fe953c672fbec0be33", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1636047347011343842944221184" - }, - { - "id": "5ded326651fe37bd783a67821d752c7f592562f2bceccf4b2364cb8c3f12d75b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17297207164344531950369767424" - }, - { - "id": "2a676e5a1797422843507108d478494fe066072469ee51e907bb343c8d53ca33", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1854863517379297697821884416" - }, - { - "id": "e63de3740c4b238fe75b80beeb6de2d267b86af4e42d5bbae7f2bc45f2702607", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1005337541277031333923389440" - }, - { - "id": "d849d9cc336097dcd968b29bbe997cfcff8247b36b2d2f861bd6edc2e546cd6d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "9882317906971850971736440832" - }, - { - "id": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2501662376093900483317465088" - }, - { - "id": "145fd1eb342689976db37b0390542ef7984b10f579830bbc3f2c4bca8dbd4cd5", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1107860954266315981718552576" - }, - { - "id": "5f5dcbde0730f388e744c2d319939566be337897fe4b0c88cd78aa146a4f2f24", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1282056507853257963435196416" - }, - { - "id": "427324ea917fc490fe15fc10781dfd9aedc8468da1e0d023ef83a49f03264a27", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9148481984811439102057512960" - }, - { - "id": "71035fad8f24b3a27c56acdaefe58f5c052ef8c6b2e9bd990dd9232afb7aebb1", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4ddc72efe13aab7c9379c7cb5025f12b8e09131a58b4114a2459606666a0a06f9f816caf8b21", - "value": "1035756740931787642815905792" - }, - { - "id": "6cea4d50a8124578fc13801c0f8fd6b0c576eb6dd31d8415a532dbc49a03cdd2", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "38d920825c1731324405cc4b09c416cb4fd79fd21f83eb44d79e83d1eec5fa3f5c428f31ae87", - "value": "1041096058505191371584094208" - }, - { - "id": "ab9ccfc2b4bf049a4e8395e04be76a0d4520781cd615e5212fc7ad744f9e6c76", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "ea19ca0314939af273658da361918949f96f6b6fdca92c8aad7e39f7a9b740d29fa3f27669bc", - "value": "1093203973906419186821300224" - }, - { - "id": "4c88626727af82d9c17723d3aef7225e821f1ca52a0cae1bee3dff0510a936ab", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "3b3871b849b914c38c09b1e878e701031ee784ed7f81ba702ee83098d45debd14ca32c7632d7", - "value": "1052671524223624650698522624" - }, - { - "id": "c032bef5ba8320a8e8e3591b45290d852fbe8e0746c0e0310a6c20a23eaddbbc", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1023789103598552473111887872" - }, - { - "id": "c703bdc311911c9b9090f157add967f66f66db8ce4426341f527f9a17a6fed50", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "bedd83140893b783b40c5f58145a7f74f2b56273b252de5ada4baacf82862d6db11a19ec0d53", - "value": "1064768386901506205016129536" - }, - { - "id": "75df82b63c7feba224bb3d1a5f8ba038b77993321a12469c3af46118f0e87c2f", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1364134864227147612488204288" - }, - { - "id": "3cbbbc74615e3015e5e3d6b7fbb578b47b18b7089a07353d288752d4fe8ea59c", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "f6b27cad55e5dff5247467158746f4c35455e7c10e9faf71e7c5b432e15c7ac31ec46f9192f4", - "value": "1011050898017959812278452224" - }, - { - "id": "8acf4d245a0a08940c2dbf1be0869d57b48da83f92b8cd6b7cf87ee071f856e7", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1770222527341699463265648640" - }, - { - "id": "371e44e3776728a23631cd72f3fb86f9b867d23c6a563cac3d69ea4f02b3aa69", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1541642652254395394373451776" - }, - { - "id": "4382b1cf4271ec266af44ec1f9d9fbeae6fd21b22f448a63326393019467e6e6", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1108958995201081605705170944" - }, - { - "id": "212ffe07052406c1754fe9a4148452b80e4bab9d72d154853ee84770ba9d07ca", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1002135222559044973068550144" - }, - { - "id": "1574cef0a605cd4f2b91c03fbadb4bfb55b6867fdeb2010df782cf0e5415a83b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "e77e60c11cadad2a453b52595e5e8002c0d2a91889dd2d499c51ca3b87ccae23e7e83070c29f", - "value": "1037185431443324387067166720" - }, - { - "id": "834701422caac2a41649c9ec01f8cef814bbe01b8763dcb324c36132fd4f41ff", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1140443091409802961814028288" - }, - { - "id": "12dba37291166f710714db04720ad0d73a26830a242eef31f0be0bd40df646a5", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1873086571793316044718735360" - }, - { - "id": "9175d9cd94d65b9f6a7032c4db0b0898b67c888c2b43c2fb267e6704b16fa977", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "61a49069e4fe50ffe7e9e0a811c40c65253b5953b7efa29da6829d9f3e4c49f24f880daaddaa", - "value": "1109883697774666611896877056" - }, - { - "id": "642cbfd86f5428123cc33b8211528cb5b4f9b8e648680a0d05143f48a7d57d32", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "08f5ab064fdca88e4df909966d84bfde1d9f51bd1066b39743ae4c4aabdb35aee533a450c308", - "value": "1013547324825877055552749568" - }, - { - "id": "0efb059cd5b18884a52035a7343c394857e63fdccb8c80b5d4771bff365c8b3d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1444908805135031604835516416" - }, - { - "id": "3ac26f2f1f6aa811b293b03b4c11902ed4b7ef667addcad466b5ad6091d0a7a6", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "5a570ee82a3328ebe7ef01ef7001499c8db6ca02726b80bb090e4a7af8720283f860f84a33a8", - "value": "1044866763884341432909398016" - }, - { - "id": "099a49b1401124adbe84a4bb5d490aad55e86fc20ad6fced5609a150f7db7a4d", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1140581894580861084021817344" - }, - { - "id": "0a49972d1ba04f8aff445c9440316387b0a9ec8af95b54f906da77e026252096", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "34a9563da05569bfead1503b8bbfa00de2151e8c14e07d9f6cd3b978cc70508a47b3d2f13228", - "value": "1034291906344512452526342144" - }, - { - "id": "9040ed3b8ee0d89596216a5b73320fc47877c3bdb7189450f9c267fdc6218f9b", - "fundtype": "siacoin output", - "maturityheight": 218167, - "walletaddress": false, - "relatedaddress": "4d2f53781898679f1fecae70749be96fc77905697716fde298d263989004477819f846e844a1", - "value": "1143734892382212570302382080" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218311, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Br2xajTq3aXRPdMJy2BY/X50hI0aQYbSk1NeQ5iu1uk=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1071427752058045537676427264", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1833687755922912212561166336", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3225824949199461641338486784", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2094390331469441359270641664", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3833711659533378673935646720", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1401972127014063505889296384", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "3625395475998585459000213504", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1011810607716945807015936000", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1207944176978929872346808320", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3500217464152389453504053248", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1057128892525477062709870592", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1393745578986345480933343232", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1061275724271989444740907008", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "18472049732086311721021472768", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1262005903837310296537694208", - "unlockhash": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57" - }, - { - "value": "10558807663073043309947518976", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1906190744775911892775337984", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2515733323140156357481594880", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1053320509622218580786413568", - "unlockhash": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae" - }, - { - "value": "1141155425115269549227245568", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1340917229544456799425396736", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9333447933808113289537781760", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1282223064687862020107141120", - "unlockhash": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632" - }, - { - "value": "1030609287813690303118639104", - "unlockhash": "3107da837a45ce1510fb729357cceac538e0068c74522075adaaab8c243e84f51a766bf44825" - }, - { - "value": "1010780417459301215408553984", - "unlockhash": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b" - }, - { - "value": "1014163840247359789189824512", - "unlockhash": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1" - }, - { - "value": "1072651541167665960934883328", - "unlockhash": "0d7a4294630c753758a072c4433ea8fd7cad340f2417d6cdfe6a69f87264566363cb60b0a6da" - }, - { - "value": "1033958353598771729288134656", - "unlockhash": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d" - }, - { - "value": "1207212225996189769092038656", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1017886197723061880618221568", - "unlockhash": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636" - }, - { - "value": "1041211756726914285171998720", - "unlockhash": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98" - }, - { - "value": "1110298502755094309320687616", - "unlockhash": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f" - }, - { - "value": "1007169349515411733046886400", - "unlockhash": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b" - }, - { - "value": "1093904493498777273557581824", - "unlockhash": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9" - }, - { - "value": "1187121998192126912891977728", - "unlockhash": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0" - }, - { - "value": "1693232642531950077396647936", - "unlockhash": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91" - }, - { - "value": "1179922389181908629562851328", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1044030924221425988446191616", - "unlockhash": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511" - }, - { - "value": "1018442495583125189783453696", - "unlockhash": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955" - }, - { - "value": "1216307502396189762771222528", - "unlockhash": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be" - }, - { - "value": "1231344864228132032846757888", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1012510626508887073876672512", - "unlockhash": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1" - }, - { - "value": "1052973754034976752177381376", - "unlockhash": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945" - }, - { - "value": "1051183838020098645865496576", - "unlockhash": "0edb4430921926c0aa7e7d5716f2998f4b475ff9650984421f7cdf2744340158177616aa2b06" - }, - { - "value": "1075947997308372812312870912", - "unlockhash": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c" - }, - { - "value": "1142636183119403551998083072", - "unlockhash": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["225600000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "vN25Zgor0CcrsQxJiGypD8qAZ5B/C5cVFFnIYxcts8n/UyfCnj5X+asUWUJFXlTmDdSGoIYmN8SpoN6zkO9vAA==" - } - ] - }, - "transactionid": "0aa72f2942dada429db0fcbc9621e0800f2c83de78108269ead970099de6aaf7", - "confirmationheight": 218170, - "confirmationtimestamp": 1564508173, - "inputs": [ - { - "parentid": "010d876c88c5a0ac9b1dda0e7d134345cf8db0ade821bc07ca63e8513c57bd99", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "072ee1e128eba16e7c61a6fad4539d434bd987e1c4a32ae1ca3edf741327a17b2586bed443ff", - "value": "100730110807347455006447452160" - } - ], - "outputs": [ - { - "id": "777d06d4837bd95a9677fcf836c988d2818c628b4536bdc5c4e08e6ea484dcdf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1071427752058045537676427264" - }, - { - "id": "0cd2e559958c52186b917dcb1c61f59d3a5b3addeb29038eb1e9d5b346ad4e01", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1833687755922912212561166336" - }, - { - "id": "600cc1fae4d77762463a0e55e72113e8fe3f817f928cd5ae111627e51025aabb", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3225824949199461641338486784" - }, - { - "id": "a0f3ef0c6bd770864d0e8be56a95adb66fcf3c78cd692700662648c83f8a37a8", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2094390331469441359270641664" - }, - { - "id": "35998ded4ee10810e65222dca90162e3e26092f93af794501738aa5ab9f2643a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3833711659533378673935646720" - }, - { - "id": "41e22dc3f5bff226321eee2e95d32005601cb4e792922a692ac49cd47ee58cde", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1401972127014063505889296384" - }, - { - "id": "3d1f314691fb180ddb4e9878fdbc995db4525181cd7887786dd7dad95f95644a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3625395475998585459000213504" - }, - { - "id": "7c096b8f8d418dbe70f6dc0473ceeb5022900955c5761def9f3e2290edf2491a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1011810607716945807015936000" - }, - { - "id": "01c2e1a5078a850f05e2270ad3393a3ff5980fc90b7632849e6d88ba0f0e179c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1207944176978929872346808320" - }, - { - "id": "5a1d01cfe096ea456ff114345be239e4fd38a1e1b5794547287f0833f4e06b1b", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3500217464152389453504053248" - }, - { - "id": "8ac5fe6d945f2db1ca01eb92f3023db2f085df9d25aed2e2e47dc0470b508eae", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1057128892525477062709870592" - }, - { - "id": "f3be5e53378c1a7e1722f149d39829e9ac433bf3973301e370ebd5f7ad57268c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1393745578986345480933343232" - }, - { - "id": "9eda9ef560a3c1583d83ac393c22023201a6216475d4f76453e30ce3f15fef40", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1061275724271989444740907008" - }, - { - "id": "69a3787f3433f4dfdf993f138b476ec48e87d5ae99f31a5b52fa80fbe8f7a07e", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18472049732086311721021472768" - }, - { - "id": "7c3483088ac2a3d311ce1b424eacd31182326d6eb5b722c07f0541c32edde265", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "fc5122c7c555b72c39c37e38cf9dfa4c91cbc7763fee6da9b6ee071ff7033f9c18ff4dfebc57", - "value": "1262005903837310296537694208" - }, - { - "id": "ec591983e5de76d255b98b52f51b4bdb36440b563b1448a86f6829084ec14b8f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10558807663073043309947518976" - }, - { - "id": "e58841cc7438d860433715113dcba5acc03b119848dcb17db5f5ada1d5fba317", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1906190744775911892775337984" - }, - { - "id": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2515733323140156357481594880" - }, - { - "id": "c6c74908fd02afb14d1fde7f30c3261d83ea48ae29cb3d6b62384746c5a91b14", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "82ca18b4ada52b05b66df29c34ed9d4a6536d51f0974e8d996b4716c9d5cf68addeace734fae", - "value": "1053320509622218580786413568" - }, - { - "id": "fc2018f3bc5527ff3a606dda341e17fb5ae3893ea2c58fb1f124a4484fcb53f6", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1141155425115269549227245568" - }, - { - "id": "6bb3d0e5bd69c7d4edd078c98ac30038cad57ddbaf6f9f49dcd90c8f2c58fa02", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1340917229544456799425396736" - }, - { - "id": "efa6b8d035512300a7750d7a3d43057bb5944516064fec9a80a037aa390a987f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9333447933808113289537781760" - }, - { - "id": "9dfb21a6a100e7f95f75633a282a4c28aa04f94bfea2edb7f5a53c6e5b7082f5", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3dba69351ee68f776d7d9004a8aa6e1a49727d697e09d3bf469b5ec9f2c841e68a47f04b6632", - "value": "1282223064687862020107141120" - }, - { - "id": "b26923d84dd46b86b16c79541ed48aba47309b620583011695d658ab78237237", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "3107da837a45ce1510fb729357cceac538e0068c74522075adaaab8c243e84f51a766bf44825", - "value": "1030609287813690303118639104" - }, - { - "id": "0447e9b4c581041aea7229fb14fc2a7ae1e2f496a7058a7defc5fbfc8a52089c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b6f99e1a8373b3a34b2fcb92ccb967f4fd66c4d4084ea3d277625c25d975da870724a3845c2b", - "value": "1010780417459301215408553984" - }, - { - "id": "7dae4eacf8c586c02a0b1e131820aabd6b9879f3e519478d15e53732f6a29bc1", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "475a6a49ab511fe24aa87dfa8c67adc63374c64158892b2531a77ffa4eb9f3c97eb88b8f16b1", - "value": "1014163840247359789189824512" - }, - { - "id": "ceb055de98925ca18f01ac56edc6cb83dab76f8391efbaa2318d10228330a84c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "0d7a4294630c753758a072c4433ea8fd7cad340f2417d6cdfe6a69f87264566363cb60b0a6da", - "value": "1072651541167665960934883328" - }, - { - "id": "e6d47d9741749c618969d4bc8c985da530df4649bf69be41c1f6e68906d5ee41", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "f5d1b8c46ed8439e12d4e523a6d048fa9d08a0c7aca618b2dce5ec3cb97b018214db629b309d", - "value": "1033958353598771729288134656" - }, - { - "id": "4900b666f55647bf9c6086ea715bc52e4dbf6fccd84ce05eb6f64fe59b5c21ec", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1207212225996189769092038656" - }, - { - "id": "8846703b6549bc1f7ba94ce6f8422db667f069ee11b49e9f4c154af6c699c675", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b5f5416aadbf9d5a5486a2dbe05284f806d6cb114e412b80dc4cfda2d603caac89f80e6cb636", - "value": "1017886197723061880618221568" - }, - { - "id": "241ac22335025004882552d3efd2553f07a58cc481f8b8de93f3bb563185c23a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "4b7638c048f4c9d5b5fa1870bb894f428bf0adc0b3af9b12fc841e8ef20a000def888106fd98", - "value": "1041211756726914285171998720" - }, - { - "id": "654d16e46f613dcf689e9a5f2f1dd030d0503072cf52334cb8421c814b822350", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d8bea2ceb226f1b7ddc6552bcf8fae297c3c9c7b9f097be3827fbf51e0f3ce4ddec9e8360b0f", - "value": "1110298502755094309320687616" - }, - { - "id": "47e47cf91e9a4f74d9848dcff2a0063808daee4d8c43a3750cdc77639e7e5c17", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "bdf703f0607e5d7b8cf40a1f194ea12a738653931c2a066d93c9296cd9c9016e44acaa95854b", - "value": "1007169349515411733046886400" - }, - { - "id": "884974245f0e5434342173b2c11b3aa95974f75c401cb538534a58cdd5d8d95a", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "427d72d7ca5805b80e7dec531fb265ac4b7303f65a625d0398bdcf6386823c9f49ff99c366e9", - "value": "1093904493498777273557581824" - }, - { - "id": "d003a3c28f7575114b1ef221c18ed04562b11ebe25d795f52c810c2cdbac7b72", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "6cb8de53af5381e6e29593d845bb4222078cd356e5d4585b63f5f193bc2ed32183ac895f42f0", - "value": "1187121998192126912891977728" - }, - { - "id": "244dc61c4b7ae35341e43609f048e1b257bc037b004121e2d3d808abe8ff29d3", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "61c3517d1042b5bc3f60cf8011e31e32a17323140b55010fa252bc227f74d4f9a00a424eda91", - "value": "1693232642531950077396647936" - }, - { - "id": "d13fab6dc99d774c5f78eb3668434097f0ddd45da5a98be873e8717802b3a434", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1179922389181908629562851328" - }, - { - "id": "a68d102462a605e93701f0390bf0330d10b542679f7695a4ccf5f18166fdd937", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d0cfad12efa176bd94a46486a9cb8d7401b59e0ba8e46e787d71b8b3d22d7ae7a73c37cc0511", - "value": "1044030924221425988446191616" - }, - { - "id": "63aff1848846c1218e10f7b86290e6eb443db28e29d4e40aee6bd236e9305e93", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "61e4c09d18f023d52069c6e0ca886dc3454d36b1202049080055837b01433ee144932237f955", - "value": "1018442495583125189783453696" - }, - { - "id": "f042e775a4692b67522be97d2b5b12283987b39df45f9721983e5a68241be2cd", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "107288f37169d51770538019b8a98712648afd72185168c74d4fb885f21d2763a230a516d1be", - "value": "1216307502396189762771222528" - }, - { - "id": "848901698f20639f7074a6ef5884c88587a410cc4be999ec80206a43c48007c9", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1231344864228132032846757888" - }, - { - "id": "e164d426c87898f7ae664c51ea88af36c333a66e45676491e75c78d343ab7291", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "f0f39d7457465cce48a0177e79cdde7ce6d4cb822334334ae1b240710c435c5711cda5bdb1b1", - "value": "1012510626508887073876672512" - }, - { - "id": "db52d35f777f14f1d4f13e57541639ecb34001106163a1df08089dee7ec4347f", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "d9347035c4a94ac96c74d51fb303c00345e1d65127ce48ba4f661f156a05f144769a0a2a6945", - "value": "1052973754034976752177381376" - }, - { - "id": "8ce8bbcd9263a36eb11d61275969c31fc960115ea9493b5326d6e5553a084a3c", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "0edb4430921926c0aa7e7d5716f2998f4b475ff9650984421f7cdf2744340158177616aa2b06", - "value": "1051183838020098645865496576" - }, - { - "id": "c9ac05e07c8535a2350b4c52e46af461e32389d0234850c778b77e813169bfbf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "461839ce72c443abf226bc2a973581a5730ac4065470a17d77cde85becc4afa60de214dae77c", - "value": "1075947997308372812312870912" - }, - { - "id": "f0e6a2401905407546ccfeb9bbc2adc20342e552355b9c947f85613fef8140cf", - "fundtype": "siacoin output", - "maturityheight": 218170, - "walletaddress": false, - "relatedaddress": "bb87fc9f12420bf5fb12c8bee0ec30b5ea6d1f09d6dd84427640187f9a63798367f286b13015", - "value": "1142636183119403551998083072" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218314, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "225600000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r2J806EwYACcO1nUiov2VUah1c65lG+PCOHUJCnE1z4=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "r7J3vWZQYY5/+N7vwwae0+oVZKHfxbSnEWKxNcc1I2A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5625212731208408981915248139776", - "unlockhash": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "W0S3hWx43Uf20wlOjW5AOBwCmJQXVGJ2zoUgvjgRMxKcAJ7So/B7nFjAXiVR7OiDnytiHhRbdqZwqnxkCyuIDQ==" - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Kg4z8jFV0LoCDSXam8/3f+kx4T2Ps6sww+FnqtZWOO6c3zeRJd89VxCYkz5/LsEEg/ZXnfccCIOOR+CJ5Oi4Bw==" - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "sepT3HFOHYlN0Iv8hVZxuAbNUEznYW8SD1ojAppnDbImlNo8WZlco0bNDgTiFR4TH033HoKyQ1VDsTGgulxsDA==" - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "faFrn1ZxgPPGDdi6PkstnF7lvsU192lDf3a0TPTLmLaK58Yxm04DNbIi054elBn9EJlF0K3rBABVWvx0yn17DQ==" - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pmz2ijdgNSflXAqiwsnudyqyUN3gPuvSbwLf9qiSXhr57ZR6KfdV82u5Mh3sPpAB71sZnBqDpaSmCqc8Db2nDA==" - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "VUMQ0Y54+4QSVcQxTzQs6bZav1uGjK6oAOjbVeV5nBXVhPCXebyYmT1C4uWqOZasHuR9qiU19pQYg7ucpdkbBg==" - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "JsCF5GEyf8XLeNiJJ5ER3TBwjZIN5vOtxCgjgpcqIbLP66+oZxfk87JIDoFuN6vlUeX9qDEt4aaQNqKj47NECg==" - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "j2zopd1NqX3gz+NcyOzcRtt/gG3tAii/55byNxfKY00ayA4DyM2Y+4EDlZ1egKIiLi0GXXqJunyaXXLfDH4BBA==" - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "pQGNPrzy9aQa53tbCGbqip7jv6IzAw8VFCM6jqRLo0KkNF04Nc1zZwHrv2auxBIYnCwLh05JCQEZWdwgd6GQBQ==" - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "QZn5F25jsUZ1CpPMhWl5/FI8hzUHpwkRaezTZQpNzb0oUzZOohMhF8nx4Qjo1AqhhcfBqyJ8fwQJkO+2LEpmDA==" - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ZBMcMf5k9w4g/h1Hjph5e8I7zMsOy/L7ahd9MgNuU5VSBdUMbDUirWLKIfIxc6Q+/aL+NShuKGh0KG6xB0mtDw==" - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "aNt1bpYfhrLQJQYyzVdcZR4FLn6g07wRfGL9l7h7QVGMRzVIUj3wjV+hWnKlTWNGsnuTIg7AfZcF92ww81fpDA==" - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Iqz8RbBVdWwqdsvUVYCw3XHaMBpLVde67e/k1OqVr1faELhCnF2YJZRjrxRJ1gm1XzOnv4ueeZi1BwQ+0iwOCA==" - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "M4M28P7tMQ6unXuURLcebKvojZsu5LXVoe9SRd9+xhMJaLCMUvWs5iYAZ0OYx2cQ/a+nHAdrb1BFC/jaHukMBA==" - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "SxJsCPYvFwI2Mes7/W1xOk8yp17O3YotbDg2LOFtUoe+KPDtJhHn8+ypnbvyWCTLSAkl4W1Oo2q0aWbgOVhcDA==" - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "jrjBD1jGg7YnmrSb7QcwmQrSDkWP7Nbz7AS/DieVEbwYnwcfJQzjQR7zBDcokM3MzuQgDhIPPYj27+hMYohXAw==" - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "I+DbHPexsJ2N5z0SvxW1xBbghXbnqmZg7/8Utk+7hEcMG5XDVc0e0pB116y7/pMTLAfz4RQJI1vp86iPYK0BBA==" - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "sRoshhWpC2E0338NTYhgdk2LvSnI8pAFg2Mglh98Wi6K8W7SRBuSqaVSsrqc3kWkSTiiVJyyPu1T5SBiqRp1Dg==" - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "bskrFxCTYFHm5gCuWX4EjvqLNbisa4VSNYi01lkYn87MDlXW4O2+cMekFo9Qsf+bPnhXEOjQa9ukKN2i9bAhAA==" - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XTLM7wBCQ7y8NH3Mfqrd3s8LkvWhwRM+jzWA92hV2IR1zAAN6MhEHPpAu66hKSiLfhtz+1mnGdmj9fuPolhrDg==" - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "2Ny5ZMvel6hXs/+2UfUdh8pg0mvLMc7KzgAMtl77qwsIMjY5kAd3GKQ7QHPidFP0GzpOA9fCQATC5SCmNV5NAw==" - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "zc11VoWX+WaBSpx0xkNAlGPpGxHMG1OnfnP+3jmGhK1jcSsPRDqpiJVvTrVDnzqwEPfvgA1GsWCcn2tg+IQtCQ==" - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "mp4FTIqSzlnUpLYt2SfYnC431hqb5rGk3OzOfFFXO3Xdc/OcC+npzPE6zy4NvFmrozSKPCaIzcpCnkT1ImEADA==" - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "14qdR8qMTSDhFhr5+xaM7bBsgqFgUMIg6ohoh4DbqEfA/gA2YW4+pDb1DEjQ/m4hg7JVu/nFn44vHmmn2Ki0Dg==" - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3AdJi3k0RIedqoslD2CK6igkrWzNiMTfK0Kbi47cB2kLz5kr564vN/ljn+NDldA/lyCjDIFTVIYLr5FMD6UZBQ==" - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "NaeD5fsiNJX5iEbSYGQ9A1Q6vDX9jJR5zGrJm3UAmp+DVxbLlpsd3L4RjnQw/lBal9nZo2eoQ3gBVWrlDwA9AQ==" - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "wyJN6Z7Qe0fQbCMfsm8uXDI1XviIUK4crjQCTyRq5+NReKKsQdY59nUO7wqEEvT9hSaM6mEqsqheE7Vr3CUOCA==" - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "3Wog8d0PRjDH9xFEHtbOUvnklv5wp5ER+UI2zCWA9+IEEgzPuy/jIc2+2U3vHjDGcHWjGuATzPUcp/+IONv4DQ==" - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "ttPhkgsm6CtExfjY8oLwEF0m1PxpFf3QhpkXvdeXFUYWf6XlIS9vWkbzjEmpKwRzKuXr/r+xWvMCxS2P/SdCDQ==" - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "4Wd1EAqzLPaRE62tYdj2ghhiA0BQasAxOd9+JERnySyG98dfMg3mZslO/6sDMWbtCLNqX376AIfaZFVitMMIDw==" - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "DQNeCYDsi33RWt4nu2cgnceRNOpNmqajJAGER1m0De3Kgy0XJgoc/bMaJ3AmXeOwZMWsPAEQzbToG4aw3u+qAw==" - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gyZ/QNVa/YUp1HIsbDZJP23hRTnUwF9zY1yrytGKHx8NLf+u/m3e9Nzl/xDvAOV6nM/UAB5eQwmeSLUPvCqEAQ==" - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "hoRQUPNnZYplw82INyYRQkIwuZaJU13uwOLDg7eq1AlcyOBwG+NcVn34SEuR7zZeuPwgPeQ4UJvKXJMiAKmMCg==" - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "gpmtS07k21TTvNLCXncN88ATzLGy5nJQWRxJ18z7AMoLv1mffGPeLkUALr1plr9jkGOhCZv3FCYTXpNp41SWCQ==" - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Pa7osUvu1mQfS6FJ+RMOg5yJsBZC/XNJwVMca4DWjCDH/r/poVO1tZ+vVYy9lQUU3kx8rd6QzlWq1UeDhYISBg==" - } - ] - }, - "transactionid": "b0e6f077ac901edba2f35228092d29ea1cbaf9e4b05b7efd35fd0dd5324d22b7", - "confirmationheight": 218171, - "confirmationtimestamp": 1564508749, - "inputs": [ - { - "parentid": "369fc8ac693893f97d970c88da23513ec603891f79db1388031dbdf17d515d5f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "340aa5230e181a0c1ae310a0228f645d29b97ddb99b11d0448f957ec93f37c551a922948b5cd", - "value": "5542949563558464152195358023680" - }, - { - "parentid": "31e7314fb1fbb3c35db66c303d073281162025bcc2661332808cc133731f8aa4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "3048695663695426512066969600" - }, - { - "parentid": "45b8f3a836c294f9ddb89789245c4a4ad66c08972492c81697c237bbfc8b0ab4", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2988507563824936148835237888" - }, - { - "parentid": "d4eb1c6facf718251f9a7b77edc0ea5e4c143d966061e907c74dd98e98b20eab", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2964984241465839560331100160" - }, - { - "parentid": "1a36604a7878c21d02f014bcdc4ff371ff1d67f75688043104a21ca66f2e8a30", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2948827743243064753510154240" - }, - { - "parentid": "55402984fe4fe6a6661df219305e219cf199ba5fde2dc3b6323193d5e26852dc", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2912421435067960091385790464" - }, - { - "parentid": "cd7bb3b2f47c789077df3ec68241e247fd05a12ce3aad61c3b03fbba67af9e7d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2848857595274758581309669376" - }, - { - "parentid": "eb7e5fb0c8668a4d516257ecd81972642b8f50e2fe2f4ec9e4a66acf78e78494", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2846299247203753521666064384" - }, - { - "parentid": "1f2fc27f2c4e6a772dc7a5500993287b7a5900162217214ccd06e2d19f64963c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2837128019724415612865216512" - }, - { - "parentid": "6b42e10db1ec07180c1749d6f1b25fb977cd9f17dc686438957a20da39db8f32", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2820108406750158796917571584" - }, - { - "parentid": "c9b58f1a35aae7d5e977e9e7346cf1525833c1d22da658dfa71fbb5e8efa3b99", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2762258971256558438601195520" - }, - { - "parentid": "2ef697ad6bec0b23c7f1b339e31f589b21540fc868019c51bcc46d5b12d56c7c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2731826231198176090764869632" - }, - { - "parentid": "2a41c8aff66655a397cf4fa1578426b0d312392d64ed50d9206e76ae2c7d0623", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2718360009967921243757740032" - }, - { - "parentid": "40a5b2efb0551d49fb242b4d2660960ee63400eb4201e9558fa124c3fd642f8b", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2686797296490122071582441472" - }, - { - "parentid": "f4553d69dbd131cba8bebddf196413b854d024718bd4f556c2627fb6d4803f3e", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2584212828375632800773046272" - }, - { - "parentid": "083f9e596597fde0c600aeeada7e9955d11a71ecce78bfaa53593a2c3586dc14", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2515733323140156357481594880" - }, - { - "parentid": "16bcf03ac0750b8798e55967611998f82ac3351389ade4139ce82259d2d08a8c", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2501662376093900483317465088" - }, - { - "parentid": "ac4f22207a1725245d21580e47cd1822475b6973cb17743dfdd8c51e0e1fa06f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2458820731707286914208890880" - }, - { - "parentid": "4e230182715fd52a4805567f76fe79340321098fbc4439f23bd43fa64958ab65", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2420126169146622647147167744" - }, - { - "parentid": "6afdd8dd736bdc703f2d88d4898e5c38ec6ae9910d4ef9032d294b49a16ceaea", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2398863643457125825250328576" - }, - { - "parentid": "443cb6e6acc53a928f5a66014d196b30ca48504b0b4cc6537d7232704d7cfffa", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2262759847283088137440460800" - }, - { - "parentid": "9a4841f41d5e34c088f0320dbb7214790876537bd4f9d86b4b5ca4ae7388b074", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2246723016259082233000755200" - }, - { - "parentid": "17d6c5670431519678f93cd1d83dd7ed558fc723b3e60a7fc43c4af6202faed5", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2225842357202115310898905088" - }, - { - "parentid": "a34e1cf9849595065eb8f7650df6aeda66baa6c91ec2a1d77ac31e0565a8b646", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2222862989743389457216700416" - }, - { - "parentid": "9a5b51ddf6b36c23ac3652e8067a4f283c73c59c98947a8ee380d0316ecc0644", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2216366038787625402522140672" - }, - { - "parentid": "efb86f69250175edc06b4ce7b34c82a6f0b4526c77080c84af3cebbce6ecdb4f", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2214843582313188321252081664" - }, - { - "parentid": "d54784de8fd5c6e494f238dd99897ae84a5c492f7802cbd7a1904ce6af38b083", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2198199701266604465842028544" - }, - { - "parentid": "a2f94147e12beac5be06a1f2fe8d0c4a6231af556ae04edd04befd38750f8674", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2186183085917049875257622528" - }, - { - "parentid": "96f948a082d67563558ffc1b0f3006c2ab4e7ef8dda39fe59dbb1ff3ed5a35b2", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176891228907684244467220480" - }, - { - "parentid": "128bc3865ca15db57f40a09bef5ddfb94c17df20a9fe1c3a22dbb0d86ed1b037", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2176419340325755875384885248" - }, - { - "parentid": "eedb2c1a17d450f156f3d2c811f4615f818c494519ee0bf84382c7dc433574e1", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2158098829662201704840429568" - }, - { - "parentid": "411dc2da1957a53e5d89cd26fa612d81a7c5f76ba156b7a747825d228f0b5d18", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2130675968690611466620895232" - }, - { - "parentid": "18d8ee362f1cbd5583c050fc9ee565779c6354a83cc8d6729ad9df2cb42b643d", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2123188483956867323045871616" - }, - { - "parentid": "b8403acd718f8920189fa34ee1351e59cbb445f2aaf2880ce01ab131b4fa883a", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "1493837915586108567327604736" - }, - { - "parentid": "97a97d1739fd141cb83ef23781910451cd6f4db72899d4d759285eef78f51149", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "235783766959640883000000000" - } - ], - "outputs": [ - { - "id": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "fundtype": "siacoin output", - "maturityheight": 218171, - "walletaddress": true, - "relatedaddress": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb", - "value": "5625212731208408981915248139776" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "iOPt2YHcnYpSNQL2LZGI3pD5/BlD3qcQjn1OU+02yvg=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "5625212643708408981915248139776", - "unlockhash": "37a5dce5ca46e96551dc3203a61b17ee6fd8df1084285742e4bdcd3340a13d558e9dd46352a0" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["87500000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "xU10euOYCbrrk30w9JWT4G7VDLE3Mh5pP9kL+SrFBdRFzWyTqpuetYqraqHvrqbXS1peHDO7VfdY2ALHlEbjCQ==" - } - ] - }, - "transactionid": "919733f3de59445e766d45b3877e01db019ac065d89f3c232ce553df6e8e5e63", - "confirmationheight": 218171, - "confirmationtimestamp": 1564508749, - "inputs": [ - { - "parentid": "5b3dfea52dafc5e2c2b7688481b4c3d5f8a99d2a306a3e2388f8ade4240a8296", - "fundtype": "siacoin input", - "walletaddress": true, - "relatedaddress": "c27fe24aba47072e2cd55f06c37768dfb18db27f1fb20019f0d43ca52e52a508ca6a701a44cb", - "value": "5625212731208408981915248139776" - } - ], - "outputs": [ - { - "id": "e338698aa1a86582eaa53bf09ef3d5774d48f299fb277664a97116c66bcb47f6", - "fundtype": "siacoin output", - "maturityheight": 218171, - "walletaddress": true, - "relatedaddress": "37a5dce5ca46e96551dc3203a61b17ee6fd8df1084285742e4bdcd3340a13d558e9dd46352a0", - "value": "5625212643708408981915248139776" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218315, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "87500000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "pEkmjA8o5avYjWsCsU8kAy3mFHR3bmQYqOqw8pP0iu8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1108869230997710257782784000", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1253473076752561705762947072", - "unlockhash": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc" - }, - { - "value": "1023002967981869574391660544", - "unlockhash": "f8f4e1466af69b20611fe978f06e306e8a639c3ef33503dfdd28b3606bdc8e49606c077c3da4" - }, - { - "value": "41016812222172828594929139712", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4913766465499249162212868096", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1098307621857533071938551808", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1004436413456358089055797248", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1247779890898062823709474816", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1036146783099618394683949056", - "unlockhash": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba" - }, - { - "value": "1701693592821409290651697152", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1054038654661497581056819200", - "unlockhash": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee" - }, - { - "value": "1519731858435158654607949824", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1281817490497892097569849344", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1285715766764277543414005760", - "unlockhash": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0" - }, - { - "value": "3271490768318285883855863808", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2182387154281675194407845888", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "2020983049539175093070987264", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3899843439904816005898043392", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1142361491308891464308097024", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1178636682776127059162038272", - "unlockhash": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195" - }, - { - "value": "3624267123025168657572429824", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1029411883789179772720644096", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1261326686357251796160741376", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3727282787259128887958831104", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1688136457542271739956822016", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "18842225736603579413876965376", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1968298466600763039416320000", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "10661010851853858021637619712", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2598134109339045069777272832", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1169438717872455285863350272", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1296378987219224014813659136", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9546948980286797678169292800", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1014507349157824058938884096", - "unlockhash": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45" - }, - { - "value": "1000948225914116071669366784", - "unlockhash": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c" - }, - { - "value": "1163989620972032424371814400", - "unlockhash": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51" - }, - { - "value": "1035891734715187946231726080", - "unlockhash": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1" - }, - { - "value": "1086753179593517522761416704", - "unlockhash": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777" - }, - { - "value": "1001149655088160163171958784", - "unlockhash": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb" - }, - { - "value": "1016100568305242981716590592", - "unlockhash": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660" - }, - { - "value": "1003722772434001195445518336", - "unlockhash": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f" - }, - { - "value": "1427508666712170824851259392", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1020676455355016868025597952", - "unlockhash": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8" - }, - { - "value": "1023202066658153290515529728", - "unlockhash": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22" - }, - { - "value": "1006894474190435394438184960", - "unlockhash": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f" - }, - { - "value": "1743385135905927474815434752", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1570221293935631652736729088", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1167805762383126385171628032", - "unlockhash": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827" - }, - { - "value": "1114260836745013636954587136", - "unlockhash": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d" - }, - { - "value": "1025898245353375161518129152", - "unlockhash": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36" - }, - { - "value": "1027901303622091513132482560", - "unlockhash": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "A1upQ5ITAIgTP+vrUVKNA0M5RtHwTC4b7bwj9cWT8j1K4plyHACZYXSL5b6ZuDW8Cqi14fh7rFNM/wbB+Rp0DQ==" - } - ] - }, - "transactionid": "197176a975751f7e7d10582727ea73ebd3b7f3f2ec33015264aff49dedb8e93d", - "confirmationheight": 218177, - "confirmationtimestamp": 1564510589, - "inputs": [ - { - "parentid": "bc54adcd237059d692e42427836fe63d1e8e82de2322aa203f6c432c886f22b8", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1fc102bbc36366e449b9eccef9346ba6f82aca0a3a83f3cf7c310538946c218602abbaa58fdf", - "value": "152105212756814745486861156352" - } - ], - "outputs": [ - { - "id": "aadf3f4af042515439d8eedfe7a6aaccfa984c2e799943f2ed9474f346812424", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1108869230997710257782784000" - }, - { - "id": "772c04ee36747d81585d4a9520e3499f82fb375378b19fa284e2954097fae190", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a6cdbc058df12d0aa85927db8f9b2267d3bb003ce458a64eca0639a449482a4ede375ec7bacc", - "value": "1253473076752561705762947072" - }, - { - "id": "754110be32ee73af8d60068e54909f52d5b50df3d3a1727b5501ec98c19d9856", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f8f4e1466af69b20611fe978f06e306e8a639c3ef33503dfdd28b3606bdc8e49606c077c3da4", - "value": "1023002967981869574391660544" - }, - { - "id": "204bc8baf39521af857cd0f010fea429a17be219b959a622eacbe3f4477b8fce", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "41016812222172828594929139712" - }, - { - "id": "c79f0b22b0d9df005acbb66ac74eaf00c7cdd30814230b79eee59c9df9abd171", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4913766465499249162212868096" - }, - { - "id": "0fa88b5527d63afb42768ba17b0fbf59fe2e4bdf269ea0414bc1f3abeb808c5a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1098307621857533071938551808" - }, - { - "id": "0598c42083462e7f52ac3b3c3089ed791f1212db9d4c998daba60b661174fc9f", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1004436413456358089055797248" - }, - { - "id": "a9d5cdfbc25cd7a66c833ee6b7fc206480408970b83552ee33e4acde8b5393f5", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1247779890898062823709474816" - }, - { - "id": "a4d089bf42f4dcfe904d6da1f40cb3152de3fe0636bfe8bab7b4247837dfd851", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "ac677c4220cef09e63f7cf8e327fc700b7be0991b21671788c3b477e4b3423cc0b182b279eba", - "value": "1036146783099618394683949056" - }, - { - "id": "236a4909158e5417ae96100cf9b3267caaed321bb77da01bc74f0e86126c09b6", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1701693592821409290651697152" - }, - { - "id": "71496509612682857743ea083e1b3dac4ae3c611af08a3df851b5e07406d9247", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f188e3a620e17f7850d6f00310cb24157adad9223e7d8b9e3ca343deea3f72fe8033d572aeee", - "value": "1054038654661497581056819200" - }, - { - "id": "e92c249906ceeb77930ec798fc669be830501c00eb64a4eeea68f98319ca32a7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1519731858435158654607949824" - }, - { - "id": "6a1b1b042b2d90bc6b0e900b22c495dc65f325443aac9f8111b9cc70060081c7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1281817490497892097569849344" - }, - { - "id": "8e58086180638bce37a400afea410247ba662c6253b7af896825d6766dd85efb", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "2b6debb2778dd6c7a61f61568838a1563a2a3d393b87b62b0f18b1adc017001a329c17e7c3c0", - "value": "1285715766764277543414005760" - }, - { - "id": "774c6173c9495387397a056aaa75068b6d15110f434bb7e484f43922a391757c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3271490768318285883855863808" - }, - { - "id": "cfa33c76b0d54696c1501dc76b814f2f9d60105200a97bd679f4aec0546ec963", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2182387154281675194407845888" - }, - { - "id": "92b68beee80c72fabef9eddfddf79e2dd8a11633d4799bef1f2c19d89e2f8944", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "2020983049539175093070987264" - }, - { - "id": "68ee7d406576e88d13713286b40430bee25da0104408639be0ccef2810fb0b4b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3899843439904816005898043392" - }, - { - "id": "48758b05c0ce66420a94144af49dd96e6fd03b3c88b5687a5f9d1191eb64ea2c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1142361491308891464308097024" - }, - { - "id": "9acbddf721e196f7aa3d77e9cd8de3389a57d92595c63546bdcb446eef83ef3a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "57866d9063f2cf8cc0c0bc8497f15daf55d6a45ac18fc51c5a370759b054075ed7efc989f195", - "value": "1178636682776127059162038272" - }, - { - "id": "34310e047b939d0858b25d1960735e4962b6a5dc40d325fd6a35cefafc3a77b4", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3624267123025168657572429824" - }, - { - "id": "ebe961b4e99c8ca70a5f562e8ce5fc946e7a3c5286e05ba0a499e076d41bdea8", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1029411883789179772720644096" - }, - { - "id": "01fdc24e16e5efa8befc99d1a537a51f56725a73f8e3686b58e3f54d031ccd38", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1261326686357251796160741376" - }, - { - "id": "538b161a4be122791037ea6669cd5562af5f99812a06d7901b64df060dd50038", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3727282787259128887958831104" - }, - { - "id": "4870415429d50436bb04e8ad2514091f5965a2f9f45a93c9ee045789872f3b46", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1688136457542271739956822016" - }, - { - "id": "143caa1c3c7d9f1cdb0272d19a2cae5810effff3da87ecd63e024cf2d67eee39", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18842225736603579413876965376" - }, - { - "id": "07859b394e0d59462d26f32da9779f076529025d73addd6067ab28bae549ff0d", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1968298466600763039416320000" - }, - { - "id": "d8466b60accde392c13cdc74deb99a214b678ed446082fb29e9fef0cc626675f", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10661010851853858021637619712" - }, - { - "id": "924f37fe95347ec35f82169ebfdfeb140038c55a4a910ebd16bff9d36990fd7b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2598134109339045069777272832" - }, - { - "id": "8b5b0b7fd01e3ad99990046acbe3d0a76be25a59723b001178a8009a40e5eda8", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1169438717872455285863350272" - }, - { - "id": "eb8a1907e969812fb10254b670d07c0c272b2ecb59431bb81538f57ce23fe24b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1296378987219224014813659136" - }, - { - "id": "fc510abfab4c93f4b51aed5d489d62dea50993ad6ec1f4ebd0ebfd265541b899", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9546948980286797678169292800" - }, - { - "id": "079fa481fe127638b4fb060c0e05d609e301e34144cd8fd9d197462e11dc7149", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "ecb570e75aeeb5b805d4933d679932606d8a91f3af9ea67d965ba6053c483912a23a46af3b45", - "value": "1014507349157824058938884096" - }, - { - "id": "07313034a90784380ccc79ae84dc7f85c05229543279358291d6bea99693f560", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c6eed74654f8b019fcdeb67b760ae58f977d5f07eec106c403ed4628de7e6dd80b396d62723c", - "value": "1000948225914116071669366784" - }, - { - "id": "471de07fe02dcb11ab0e949a94bbcd7ebb5d204c57b8a7e9b9874bc44ca8ec66", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "d423c12df5bce3594e8edad2c3559bf2e78d6e6174551de1ae6b652f442b0aa9d02fa5b52a51", - "value": "1163989620972032424371814400" - }, - { - "id": "d6a2a39aaf02f699062c8cfc6570fa7a206ee454546714d63b736c2297288519", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "e24a4ae6af3f69365e76d746645b0b48bb785ec6cf6bd810f60db827cba34a1f901b7a82d1a1", - "value": "1035891734715187946231726080" - }, - { - "id": "08ca755f73b388d96ad879b0e6edc88b5f021e7693e5d886025780de719cb3f0", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "b4d3f38d50c672c273bdc67c4fff22e464ef4d9468ff3402f81160ea04c424b98da4b76b8777", - "value": "1086753179593517522761416704" - }, - { - "id": "1468c27a3192d33b21f3513a270808c512463951672ca9dee8594aae6bd82350", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "f3a5f0b02b01279e1217a937397a40446bbe7cf25ff8453b7971091802328766d3b1f99fc2eb", - "value": "1001149655088160163171958784" - }, - { - "id": "3a3bc25fac853dbf4811e9cba1b4a77fe6c7a7b3e24bce3cd05d38b8ff84b2cf", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "061c069aaba8c16115c14c6e0aff51952a329805298f48bacd2709dd63ea9bc7367aaad04660", - "value": "1016100568305242981716590592" - }, - { - "id": "e5fccd49d8445ead858130969b4cfbba14e375a171c7cbb94d86839c3e37a10c", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "859ef9ac9b9fe3bc31a56318423a100edd334f0e5a75e0de34edc89eebe31d5febd010b14a1f", - "value": "1003722772434001195445518336" - }, - { - "id": "f28849dbfe3e3321f5f96e9f94de057055ebb4081a11d485f09a6f4828f39e3b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1427508666712170824851259392" - }, - { - "id": "ebac40e552ad2b408cc98d75135ccb1b53cc7df8f4ca4cea5ae860048e468e5a", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "0fbca9dbbc71f0e353e2e1e7039afad2a2c038041ed2f336a35e13b0855ccc25d1fd9d6037a8", - "value": "1020676455355016868025597952" - }, - { - "id": "3a93f396bb30a9ed85d611641b5bbfa44b3a7132a53b57551fd90c7905710c27", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "2fb10ed420cb20679bd62068601a727eb1163e547039dba2074d9020fcafadf67ffa53889c22", - "value": "1023202066658153290515529728" - }, - { - "id": "d22b0cca0afaba5bec928ca9791c4ed836f6f7153146da97781fc5c8c36ee781", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "c6f29ae6b667e25f6683b782559577420a7aad0e48790cbc6aa719c038ba0ecb240899a77d1f", - "value": "1006894474190435394438184960" - }, - { - "id": "5084bc210f7d1ccfb9cd767aaf6306dd60cc5f2b83791997898a1d6772378292", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1743385135905927474815434752" - }, - { - "id": "5ed105eda7bb34c85ee1ff343272e1714284739557c8a03be7e534391605de6e", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1570221293935631652736729088" - }, - { - "id": "bc0341d5a760954e8b4bc039eca270a36bb23b80a50a1064ddf7b4a3bacad238", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "6d94e4448e97c0558e7ff31d16fe18542afd1b378375abae411122c8a19fa10876b743611827", - "value": "1167805762383126385171628032" - }, - { - "id": "8418c64dc834e8d4b81affa76d4b9b2343fc345868a6b11a464850e2a726a53e", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "8c73beb9f60e690f05d6f4be39ea093e2cfae4bd1bcbae84ce3ab35d88ea5aa36bb855e1527d", - "value": "1114260836745013636954587136" - }, - { - "id": "376e8a5a403e1225654f46229028184936905893fe330e823a9e3c957a079c6b", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "91eed6b634fb1e7d1eafc29eb922404ac1d419169e24c75853a5adc972e217b754be47b84b36", - "value": "1025898245353375161518129152" - }, - { - "id": "490ecfdeb018a7f0c9a70d6e9e51434c5cb4097548b7a95d126fcf77317ff6f7", - "fundtype": "siacoin output", - "maturityheight": 218177, - "walletaddress": false, - "relatedaddress": "dc02b8033117f3b2ef8e918a8c695b522e4fe9cc6afc4d87003cf4b997b82581df2292ead5ae", - "value": "1027901303622091513132482560" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218321, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "lBpcEf2E8z8nGmDZUo/5TWUEcWbUzhPpvgi0YtyAZZ8=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1033161002535728302014038016", - "unlockhash": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19" - }, - { - "value": "1086902398039214261409349632", - "unlockhash": "a72ef7a241bccd7f2119f1cd3ea67dd0f726b08a5ebd196c9d46efad0af0f3cc397a98714439" - }, - { - "value": "1232124860745595052994592768", - "unlockhash": "a67b608f96969e736b63e771def905a7bcb016d8dedd72b596425ff6b5a91bc17d9284e4a16c" - }, - { - "value": "1004462044662122690442690560", - "unlockhash": "e25ec0e2b30fd100f1a8e3feb4dfa058d8d3693f4a0ca3ecf1dafc942759c92eb9cdddeda163" - }, - { - "value": "1051116544433387837727965184", - "unlockhash": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4" - }, - { - "value": "1043491865849158212099637248", - "unlockhash": "bf23604a44065caa07e3bcdfbd8154cc5387a7d599b782098409a0f50d398b54ceef70f428e5" - }, - { - "value": "1446835984177447985649549312", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1106366404059674570717921280", - "unlockhash": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3" - }, - { - "value": "1183494452208407370339975168", - "unlockhash": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7" - }, - { - "value": "1065619271637260280540430336", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1096160744105364733916610560", - "unlockhash": "57d2f9f9d5716680a8950f25a1caf445d42296df42c6473bd778be5d6b1ecf5b29ed8342c1bf" - }, - { - "value": "3985791795735811647109857280", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1095265297775371306237165568", - "unlockhash": "1dbcab167414819db638c9ae324b2cca80774655e53631fc334561ff7dcfa20ea65bf7bd2b9d" - }, - { - "value": "1013869316974170064371056640", - "unlockhash": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593" - }, - { - "value": "1084947098990733728916439040", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1077643204735329049390350336", - "unlockhash": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec" - }, - { - "value": "1115012479455180459601821696", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1015471116717860262673285120", - "unlockhash": "90088d88db151379cc29b57314c8088ee6a6609d2d450a8fb9d4b8efa8126c4d7973eab42361" - }, - { - "value": "1013045274676226303210389504", - "unlockhash": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69" - }, - { - "value": "39899399333782678994973360128", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4736441826358961866039885824", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1079990196951013120221904896", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1076057178284465344641859584", - "unlockhash": "07c12a2c2bb4598481704794e30c7c65308462c5f5372162dfb2e503ed6f53d624ba63455e7c" - }, - { - "value": "1077353188138675417669828608", - "unlockhash": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef" - }, - { - "value": "1021473331455000358096044032", - "unlockhash": "c3ac26401d16dc62792181d9229363924562c0e85b09dd99aca96af2a671afc175d67a8bdb1a" - }, - { - "value": "1898797944699280117513322496", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3196708633397831465300918272", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2040858896393960208868573184", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3544256455480596325214453760", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1118686104103438137572196352", - "unlockhash": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132" - }, - { - "value": "1006440268406882342212730880", - "unlockhash": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6" - }, - { - "value": "3635343936986171771260502016", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1116330498532743564558860288", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1101264933026332229204180992", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - }, - { - "value": "1259780082522910659723657216", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3536386613338957416480374784", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "17847287110574143166285348864", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "10098564759736386570567024640", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "1920384690035105715460243456", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "2490634074934499938121285632", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1145214119014343563628511232", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1295660963225007387312128000", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9143773260194257221546147840", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1066451838847660917831630848", - "unlockhash": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee" - }, - { - "value": "1006106970598010778460356608", - "unlockhash": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a" - }, - { - "value": "1137350582616684506155319296", - "unlockhash": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f" - }, - { - "value": "1055859674675513906750291968", - "unlockhash": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639" - }, - { - "value": "1091894509944502973530439680", - "unlockhash": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab" - }, - { - "value": "1162129174071094436508991488", - "unlockhash": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa" - }, - { - "value": "1077440175024730666789896192", - "unlockhash": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Fl8TgrF4EqPBTk2OCb2MNr2E24pY90xSHHQHgHPtMN1aeYdVX9ndjyFpOm1YJB31JgSw+fGaEEXYasDqJYrjAg==" - } - ] - }, - "transactionid": "8672e6c6936ff9343264418bd98b62d0effd58d211e2de0912ea89505da37e57", - "confirmationheight": 218183, - "confirmationtimestamp": 1564513787, - "inputs": [ - { - "parentid": "dfc97994f650037c44b6ada447ed09fab71a259975a2b5967e0d277a0eaf966a", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "4a0394151321ffecd106c5d31bb5b08678dc9d1ef1efb26271032bbe002ebaed0092d2d39979", - "value": "147635342482865885207863394304" - } - ], - "outputs": [ - { - "id": "67b99984d0aef54d51b97ef1122882e4f2f5d19239e03ed0f83f20575df54945", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "204b82263a6fc1edb1c63a4be3b7c686289e8fe83faa89ab0d1ef19c36a88047917b7405cd19", - "value": "1033161002535728302014038016" - }, - { - "id": "095ca71420e0adaf1ea98c92b740d053bc8aae7f372a0f7f3b2d267f5ea11655", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a72ef7a241bccd7f2119f1cd3ea67dd0f726b08a5ebd196c9d46efad0af0f3cc397a98714439", - "value": "1086902398039214261409349632" - }, - { - "id": "92673e1dbc5967060cad555a1ed53af5395e884fc38ac57f8d1af88c01c1e848", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a67b608f96969e736b63e771def905a7bcb016d8dedd72b596425ff6b5a91bc17d9284e4a16c", - "value": "1232124860745595052994592768" - }, - { - "id": "dcb2ead92b0bcb4e3018f9823e87b0c4a7c0e293c2ae78a2f2bb7a7fc7164d9e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "e25ec0e2b30fd100f1a8e3feb4dfa058d8d3693f4a0ca3ecf1dafc942759c92eb9cdddeda163", - "value": "1004462044662122690442690560" - }, - { - "id": "d0dc9f4bc4a01a66e41847bdda3df61591a6e7e67cf7a4a612638bb1728fb5ca", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4", - "value": "1051116544433387837727965184" - }, - { - "id": "2252ed6f262f4937223c7e4946e9b4bf119d5fc21a3e81aed9581a196a2bb57f", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "bf23604a44065caa07e3bcdfbd8154cc5387a7d599b782098409a0f50d398b54ceef70f428e5", - "value": "1043491865849158212099637248" - }, - { - "id": "0e7dac5ac49455701a39626ec3eccf0e38e973e1e3e9097eb9586d234353c923", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1446835984177447985649549312" - }, - { - "id": "28ac6c06f60f07aeaf9cbf6d1b495c35bc12cca26f13dd2398599bc96d80572b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "030d8fbb564db2cbd5a0416a61688abadd2bf7424d94547c488c48428b4161a1718c895332d3", - "value": "1106366404059674570717921280" - }, - { - "id": "12efef87cb06cf44f424f07baf4e402f1360eba633e81b0796cf823639d3d454", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "fe14cd26e5448a8a1588ac6e7375c9f4ca07dd3a8795ec32743bab0e73b8c50b3272cf1b05a7", - "value": "1183494452208407370339975168" - }, - { - "id": "12d3b2296fe8c4cbed945211e45fb0a37ab0559a7ab260cd0634c737f51321db", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1065619271637260280540430336" - }, - { - "id": "a253c8e5bc0adaa311b0086a3f35af02881aa32a8932846b9f8c69bb7554880c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "57d2f9f9d5716680a8950f25a1caf445d42296df42c6473bd778be5d6b1ecf5b29ed8342c1bf", - "value": "1096160744105364733916610560" - }, - { - "id": "76fec31e2cfa33682d5c1b57d8ab0c23f52eb2b5646ba68469482c81f911ac8d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "3985791795735811647109857280" - }, - { - "id": "dfe1ecbbb6a3037478b29baca676985a597b4678f0a8748e1f39fad103de7e38", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1dbcab167414819db638c9ae324b2cca80774655e53631fc334561ff7dcfa20ea65bf7bd2b9d", - "value": "1095265297775371306237165568" - }, - { - "id": "fdbc90ccf72d39d4c9ba346db2e4c3c92e761f2788c35fb6b60ee1979ace942d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "634482bd37f34f1040e51aeac50c5198f611260c8985ba95cf391f46bf1a68ccc51dc933c593", - "value": "1013869316974170064371056640" - }, - { - "id": "d6a784fc7e8b15315e4dd6b73a27c37de818f0e3c9b544e97334398beed65282", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1084947098990733728916439040" - }, - { - "id": "4a651af976cb6a2e3b321fcaa2da7661fdd9c3993820247f0a239d697aac8385", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "67162c04545b6d9b821c15e36a4f606de53245e6d0c98dfb08e7242d084632b8fa65e2c1deec", - "value": "1077643204735329049390350336" - }, - { - "id": "a55d0fdd8a681c29ce25eced24b03ffa545032f48288baeb44d0875191209796", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1115012479455180459601821696" - }, - { - "id": "13712b5278f6479407d1a3436d145fc851b9aa4ee9ab219e55967d695fb212d1", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "90088d88db151379cc29b57314c8088ee6a6609d2d450a8fb9d4b8efa8126c4d7973eab42361", - "value": "1015471116717860262673285120" - }, - { - "id": "40551f2dd0114366df28e1068d3d6955f6f52124776d1713cb28c0db082f0d7e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c55ccd3efee4624e60868d269e5203919329d849ff555fb6fe7c344becbffa68422917191e69", - "value": "1013045274676226303210389504" - }, - { - "id": "2e6302801452fed1ae3fb8cc964535ec4e305680f4a7835f2c03801d0c887a7c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39899399333782678994973360128" - }, - { - "id": "0175e5edee11e67488f39934dab33d19feb8152621e45df9ffb3d2de119eaf70", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4736441826358961866039885824" - }, - { - "id": "4fc8800717dab94f54ff0ceeb7e6f98d0210acef886d313a3e8ae7a7120a23f3", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1079990196951013120221904896" - }, - { - "id": "3d6d8b1da490fcb8f0caec2ac964f7b9e61b4087dfe859fa19183956a69d224b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "07c12a2c2bb4598481704794e30c7c65308462c5f5372162dfb2e503ed6f53d624ba63455e7c", - "value": "1076057178284465344641859584" - }, - { - "id": "886d6852959106d00678fe271466b95074848ed6def0938cc5defa62ac585fc2", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "8ba959c31f8641a9965b8993ac6ad345805ab6a7c1e806fb8c9b427e2a53fbdd0c647e11f3ef", - "value": "1077353188138675417669828608" - }, - { - "id": "a286af8cf232d6bb29f3f550696a2d72ab691dd2a39c744907f3aefbf7708072", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c3ac26401d16dc62792181d9229363924562c0e85b09dd99aca96af2a671afc175d67a8bdb1a", - "value": "1021473331455000358096044032" - }, - { - "id": "7b7b64736392de32b6034475699162c98c40d2f378e47f45b23c22899466245e", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1898797944699280117513322496" - }, - { - "id": "b2348f40fb96561278d91ea907118702cd7d5f68e625c338c98ac7c48dad27b4", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3196708633397831465300918272" - }, - { - "id": "3f1aa911858b2144a32c5b3bb04cf6ee3b5726681bd29aec91f61684d396b35c", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2040858896393960208868573184" - }, - { - "id": "42d8ceaba48b91d062e92d104210ccd78f86b95514a86b7f7db774c676c499c2", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3544256455480596325214453760" - }, - { - "id": "005135d08c632a12b07b504bd4752cef6af8fb668a602498a9a76b006378a081", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1abe25f5bcf22821223feadee709541cb090d92b68fc10de0e6691889466c39fc7ad2f6b5132", - "value": "1118686104103438137572196352" - }, - { - "id": "98ac886456169f92c6b6420eead69d214768556c577c8ed25e36c592e64dfb0b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "5f5ee8d798b9c67b37f29c680277959fc3a24353fb81bc04c6705b4dfdbdd25044e188ccc2f6", - "value": "1006440268406882342212730880" - }, - { - "id": "2d5c26a3dc44bc609ea264d226f1921eae462b05524dc3564af603b798cac641", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3635343936986171771260502016" - }, - { - "id": "d8267c9d4ac8f8043005acc5b267d91aa4bba345d67cb48f231a1369c3181fff", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1116330498532743564558860288" - }, - { - "id": "3a3baab5645e95474302a95d71b73ed1ad18ead1714b699d22a2b9e3daef1b9d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1101264933026332229204180992" - }, - { - "id": "09d016e4338f2811fafb99d92427c879e4e6ae00f04e016198b8f284707ade4d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1259780082522910659723657216" - }, - { - "id": "8dff56f8d18b8e9a5791edab21d10652c0aeabaf64fce7a34e27a117169784cb", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3536386613338957416480374784" - }, - { - "id": "a3aa0fe59f206f2d5875d2f36aec960f97202a3d8650b8f40d5c19f18bb46b8a", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17847287110574143166285348864" - }, - { - "id": "a84ac507626ec545020a9dc9a8398f3a8472384ac18f2886423ff2e222a2d980", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10098564759736386570567024640" - }, - { - "id": "19459893e045f88ae980e00172c58dc4b244ef6204dda77337030637b6486742", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1920384690035105715460243456" - }, - { - "id": "2c64f1c5e10ba95d398739734abc89931f08582be74d6dec193000fb8ce93d1d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2490634074934499938121285632" - }, - { - "id": "e745f92712fa62c662553cb2c774867d7fd18579d3ef80aa4a65487724bbd33b", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1145214119014343563628511232" - }, - { - "id": "06855b9a9fe59ba131f513f8514d897fdffe2235c7dc30fbc808db375e69a6c1", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1295660963225007387312128000" - }, - { - "id": "de4ae7432af8866db97bbb85cc2cdae8abe6bbc119736cc601d94c613f0e6762", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9143773260194257221546147840" - }, - { - "id": "b8b248102569a1bcc5b684e6597a934c79a7791e150566f92d4aa4e3370d39e7", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "a42a3ffa2d11e389162c201f2c18a49d079fadea05219e3d1e8ba6adbd49774c664ec774c7ee", - "value": "1066451838847660917831630848" - }, - { - "id": "d5f193a542d21ba30188229dcee8314f7d5452718823a157e64824a436479f1d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "f1ed1cd3a060ac0347167522f91fc36465e6e8291a02d1fd76b666886b817451aeaa76df638a", - "value": "1006106970598010778460356608" - }, - { - "id": "0eb0940d859224a7d61c8b0131c167ce0d623c0dd8b1a078236e6060b5e90b46", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "dee80d6bc379849053265921c53b095a492471f0898dcad142a833530f7f55202c4464cfbe1f", - "value": "1137350582616684506155319296" - }, - { - "id": "f427182c76dded7420ce6ac1453e6c88ad49d8c37369c4f5da33546025ec0083", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "226445172bf3824fdb653913acc062ae3ed5839c644ce2053bb4528c54828da43627730d4639", - "value": "1055859674675513906750291968" - }, - { - "id": "849fca9560fbdb6ccb2d81029ef241e5dcd7d0ea3c63ebe59441d33faabfc9e3", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "76999c4237508e55381fcfd25b58f5d4f04b0ef4e165ff681ab6b15ae9b33dc6636d36a036ab", - "value": "1091894509944502973530439680" - }, - { - "id": "0d3bd10e1ea59fde17b35045d90bba18e626ff1448851937a08edf4851df8c7d", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "6b07efdba12b105ab47b3f7e795debb039e81c1edd67a529f7ee72a2957fc3107e7c607004aa", - "value": "1162129174071094436508991488" - }, - { - "id": "b41250277e5dfb056ecac57edb64e08c54248ddb0266404bf783be9369fd3e80", - "fundtype": "siacoin output", - "maturityheight": 218183, - "walletaddress": false, - "relatedaddress": "ff2412ae9d0b15b6005a79f1143dd5eea02ee60b8baa544666124ce44fc770a08e15b461c747", - "value": "1077440175024730666789896192" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218327, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "c8a2626ba314a12fe79e37a5cbb4c41f68006eb610adf5db1d0ea108d798a3cf", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "kadUb1qdufvwF1GMEqKl/ONhYBoB6penwNkgBlDKUJ4=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "39254323309566206367869435904", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1076442153119497572795285504", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1156020617311093694619713536", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1660888259317825102487224320", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1474395704639358590958698496", - "unlockhash": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5" - }, - { - "value": "1018633285741736555705008128", - "unlockhash": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6" - }, - { - "value": "3175718935568588261371674624", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "1025006855077579125673558016", - "unlockhash": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452" - }, - { - "value": "2075797721296637994591059968", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "1940157720354281828244258816", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "3644891894788865838377074688", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1401720918840533587223117824", - "unlockhash": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2" - }, - { - "value": "1233617867659474858046652416", - "unlockhash": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6" - }, - { - "value": "1069490929641687682824011776", - "unlockhash": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375" - }, - { - "value": "3533136351927834490093699072", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "1019110808337100493155598336", - "unlockhash": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4" - }, - { - "value": "1021861062451189179649097728", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1212889605515111124944551936", - "unlockhash": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4" - }, - { - "value": "3522131179807051909544542208", - "unlockhash": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c" - }, - { - "value": "1033863276427961166226522112", - "unlockhash": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740" - }, - { - "value": "1396849488956240275500433408", - "unlockhash": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e" - }, - { - "value": "1084558274752108817787912192", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1725823982431484062294081536", - "unlockhash": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209" - }, - { - "value": "17802890553131459695100297216", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "1855935385366128147172425728", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "10036850236789551989277065216", - "unlockhash": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d" - }, - { - "value": "2481026996185206744990875648", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1136979509833599140866555904", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - }, - { - "value": "1252153967993102401026392064", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "9174821081370810718988795904", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1056361098413329027571122176", - "unlockhash": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6" - }, - { - "value": "1054707967553596256239616000", - "unlockhash": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999" - }, - { - "value": "1027940382771565768833302528", - "unlockhash": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8" - }, - { - "value": "1017191355957251838843174912", - "unlockhash": "dc053f9a49b6d347bc47ccbce50191c8cb0bb948202fbc9d71e87b92cbf6012bee7751e356bc" - }, - { - "value": "1161040016520351774612652032", - "unlockhash": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c" - }, - { - "value": "1352882281006851131399208960", - "unlockhash": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4" - }, - { - "value": "1010858679456657432080875520", - "unlockhash": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675" - }, - { - "value": "1675866838327483039039356928", - "unlockhash": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8" - }, - { - "value": "1528986741636271935006441472", - "unlockhash": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a" - }, - { - "value": "1075694011684634814601494528", - "unlockhash": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4" - }, - { - "value": "1174791991299686473939288064", - "unlockhash": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb" - }, - { - "value": "1137663826165810761506226176", - "unlockhash": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704" - }, - { - "value": "1056218927654520452632510464", - "unlockhash": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0" - }, - { - "value": "1137032344123024837886083072", - "unlockhash": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52" - }, - { - "value": "1818911905938137325959643136", - "unlockhash": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03" - }, - { - "value": "1355574581753041643957649408", - "unlockhash": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab" - }, - { - "value": "1196495029096854265283477504", - "unlockhash": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6" - }, - { - "value": "1126597611125252007715143680", - "unlockhash": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f" - }, - { - "value": "1045537706447257674719559680", - "unlockhash": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d" - }, - { - "value": "1058298590930085790310989824", - "unlockhash": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "c8a2626ba314a12fe79e37a5cbb4c41f68006eb610adf5db1d0ea108d798a3cf", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "Zi8yi2Ev0y2JMJBh+L6oZq8ciKOd9DriTT7XzYgHM1t4O7j0k2kjp0Em8n3GcYkAzCpbowFm4dByDAxbAAIDCw==" - } - ] - }, - "transactionid": "7af090a5757de9352dceee7c34f0652162076d8a58cc9671b138db720cc3af1d", - "confirmationheight": 218191, - "confirmationtimestamp": 1564517673, - "inputs": [ - { - "parentid": "c8a2626ba314a12fe79e37a5cbb4c41f68006eb610adf5db1d0ea108d798a3cf", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "f73660e94ad9478035d5d3f7eca0173fcde85edea75d891f22c39091423f19b80bfe797372a6", - "value": "144566879822060971669543436288" - } - ], - "outputs": [ - { - "id": "bef2745c35e0b87b99b3199b3a285018405c0a3cf3478a645cccede0895c52c5", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39254323309566206367869435904" - }, - { - "id": "5d1bc569b37b1c1c8053208570c8ad0fe7521c7994f6cf9329155852ef21a07e", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1076442153119497572795285504" - }, - { - "id": "4512b2c25c7b9440ab26137cda063e92ed49fa67f1de23f27f709182454c907e", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1156020617311093694619713536" - }, - { - "id": "ad52325c990c9ee146a85f6b75e3f890c84e5dff7c3afe492be66da3c75d4c61", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1660888259317825102487224320" - }, - { - "id": "0ba5293043cadf6f9df0f12e9687e939317edf72a179956367c1aae934f3c715", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "33c3743ce1f47f6913986674a9c0834e9692ae2c55cb4accf4ac565c3277c5e4b62b0aacdbc5", - "value": "1474395704639358590958698496" - }, - { - "id": "d52972e9b98dc289ea4b214fb6b5776a1dbc5a0adf3737b9ec1e5636f29fd036", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "fa6d4f69d5cb67deac35443feb390cc63da1d31fed58368cba7030d475d9d788f61c906a55e6", - "value": "1018633285741736555705008128" - }, - { - "id": "acea25b8586fa1a51057db0db15a28016e903fea18753d59fec30cf7e34c7f7f", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3175718935568588261371674624" - }, - { - "id": "1cc52895ca3ffd27244ddbe1293408663dfe9583e42a1f9c85ba72f2208eba9d", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "b888502bc66c9fbcc84cf6b0a59a310143adde9b3ec62df23591fb8b25f7ed0e3a4fce6d9452", - "value": "1025006855077579125673558016" - }, - { - "id": "fe93577809f89f772ded4def0b243ff7e21443c96054e3f6891f927eab3cc76d", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2075797721296637994591059968" - }, - { - "id": "569e10cf6bf4a397095f009d8f812873131e201679599460fd33dd83a9f7bf33", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1940157720354281828244258816" - }, - { - "id": "1962f9d6512767911a0ac941716aea2642db48b97cdc1dd619dad157f0781654", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3644891894788865838377074688" - }, - { - "id": "2d89398bf574295086243d62ef2766f503b255ea5e7a19b210a3a797577565b9", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "ee4fb9dab51b9879fa148e7dbab6060272374ce25b3841e60eaf442f5a65c4722ee88ec74ee2", - "value": "1401720918840533587223117824" - }, - { - "id": "85f19d9891ed1b27f0a7047184f2c0f238558adf45317ea3ac3fa7b1fcd75147", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "fc9372ea3143f36d46449664f86616605e734faa800c512fd2c8d1b2a1588e4b6ea28752bab6", - "value": "1233617867659474858046652416" - }, - { - "id": "dee8cc898abc30ce21b364fd0d3c946b3e6a76fabf107071f184454ac9fb4c68", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "b90eead63e6d5adae61ec691a3f94c4a201150ca898be99318c5f3328cb30621f5796b16c375", - "value": "1069490929641687682824011776" - }, - { - "id": "da482fa463268705486938225a3584a28678261ab6aa7a02354bef5ede7bf6c5", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3533136351927834490093699072" - }, - { - "id": "dc13c6d13c803b1b7bcfadc9a2b742c5897c19949bf78e3cb6a1d95b63464e27", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "9130bef014bf58cca67ca744d9711b9c47b6c67afd05548eb3c10e315d6c5f8185ad5494b6e4", - "value": "1019110808337100493155598336" - }, - { - "id": "84430986875b72a28b9453ae1449e4555b9ee283107a44ad1349a52ca088676c", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1021861062451189179649097728" - }, - { - "id": "5ec129a5c1b64ba33283110f4802c8f05fd43786e39daae95dfebd2097c1d9bb", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "cce24d8ab67c0dbefe0e385aa960ee4c9d530d5321f7b7b697bcb796f39b791fd1d3b1580bd4", - "value": "1212889605515111124944551936" - }, - { - "id": "b6a60f42b39a018ce0132552257390de46b8ead529208862cfbe061198632dca", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "b52fdd8d2d251da4940aa74fc812846c63f695d6f0a813d9369b3987480a0c07b1371973414c", - "value": "3522131179807051909544542208" - }, - { - "id": "08d534563084a16a01e380a36e168c91cc9bff8661c4ad6387959dca49f4bb21", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "ace6043bfffc8843ff25d745d890a5567ceba440aa2ebb1a78bd7a7f1a977a6cda0bbbc36740", - "value": "1033863276427961166226522112" - }, - { - "id": "3b16227050b03904096f1aa45030f206aaa9bfbc9350dc08633e9a2de37ac485", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "50400e14cd2e0a0c01f75de37c4d65b5331867ceb80cde99474da7967423f891e41306b3d67e", - "value": "1396849488956240275500433408" - }, - { - "id": "20c5f9f874308172660b821b066fd25b133de4109810fdd66eb81f94955c919b", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1084558274752108817787912192" - }, - { - "id": "8cc036f2cb2be5b7be3af4fcc19380cb10697ab0ec949c9c27b98ba15163e267", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "0b5b4af5d4b6380d667dcbe2f22c98c4f6aafcc8362c3976374b26258903cc1513be06282209", - "value": "1725823982431484062294081536" - }, - { - "id": "28f1d728803eb75e26652fde9dc9ed6b5e3dbb1098055a4a6c57c92227953b41", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "17802890553131459695100297216" - }, - { - "id": "e2f1ad3dd6d4f439a655717c36cc7b50552400a91ba7ec5efd2dbc8c83fb1cfd", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1855935385366128147172425728" - }, - { - "id": "f06c70fe97e61e3ef56ab4d5f764cfab6b10802728611e4b552459b72627fa0c", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "1b746958b590aa45a31e33cedd8609dc01b115f54e6c1cc4e3e803923930ad816e0b97ddc62d", - "value": "10036850236789551989277065216" - }, - { - "id": "b48fafa9dec39706028ebcf4e37e798ac1ac46002c57ff46e9a0c46b547fdb4b", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2481026996185206744990875648" - }, - { - "id": "d1f82810e242af95bb5e866cfb1da67f3789a55ddfeca776945ce590f6e73801", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1136979509833599140866555904" - }, - { - "id": "0889b9e2c19f71c7153ed63acbb62872117cf94c34860322412a37a54902f3d7", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1252153967993102401026392064" - }, - { - "id": "d32eb0c5396c87a40252282bd4eaf7f6d299a247fd18f46fe3d38a758c52c155", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9174821081370810718988795904" - }, - { - "id": "769d965f6dc716d7b58f1802245180b1b5563a99594f1091a28605729664d882", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "5d7716ca30d75a587582542c222338b497ca9b404bb3b52cff6a1f01c9b76a2e649e5c5a46c6", - "value": "1056361098413329027571122176" - }, - { - "id": "72dd98b19906ffa615c8fee86e24914b384e0680e97a14a18fcdba90a95a4015", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "8618744ae22c1aad44175d5f8afa7601a521ad32e2694bab6c29ee142e978b942ba38bfe0999", - "value": "1054707967553596256239616000" - }, - { - "id": "78dcd8b5081f325cd30e931f7402dbe586ae1b38efb249a5618d1ee593642175", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "0a92a84f7183241dd07eab472b0ebd547d9e5e5e8761e56f6fe0c314e3ff8885f10bdee2ccb8", - "value": "1027940382771565768833302528" - }, - { - "id": "7010c7623ce378474aa1479984177fdb2a2f13f6177b352b0a96aefbe077ba9c", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "dc053f9a49b6d347bc47ccbce50191c8cb0bb948202fbc9d71e87b92cbf6012bee7751e356bc", - "value": "1017191355957251838843174912" - }, - { - "id": "1dfb27cddf926896c003abafed17f87fb596ff30c9dbbbf2d7d6a4ecb8fb6072", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "2ffdabd57db5e9138e5f35323cb33199e8aa571861fdc99e4fd449f8be77bb48af319c9b435c", - "value": "1161040016520351774612652032" - }, - { - "id": "9bec71185ead9fcce77634cefe43af5bdaacadbbcdc647769455eab7e38a92e5", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "0eb8180145d1f0b2b6e88cedf5bc42e97969122ffdab4a68510ab286caee4d2fd464f152bab4", - "value": "1352882281006851131399208960" - }, - { - "id": "4eb4d65cf2c6eb2364994512a42bb766f11b569d4aba1e6345d6859dda674703", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "27e15c1480032c0c40adad943893e19129dc88ffdfc90f22d8b8a7dcd54a896594c9a4d18675", - "value": "1010858679456657432080875520" - }, - { - "id": "0a9acc5b6e03ae4eedfa2e3f4bf20887523dedb61e70a5c10d5c89a5eabbe964", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "78843d5df4a0ee4da21a242d8772daaf3448c2624f6331cddea5e2b5237a5019650c0613f4b8", - "value": "1675866838327483039039356928" - }, - { - "id": "a3dd4279e2365d4a25226e00022231f7dae0501d76e6a4ccd3ba937f5f8ea306", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "e7791e067831fe290287d295890af438c71cc2ed4f5e181a1147d9c211699ea822c74089199a", - "value": "1528986741636271935006441472" - }, - { - "id": "a88f92743e602171eeea742a5fe67d238baac93a2c0af925ae2248ca45f81631", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "76797cc2fd858453f49c60d636e328af64aafaf0dc758000f5364e3925a516a644e734df32c4", - "value": "1075694011684634814601494528" - }, - { - "id": "8024747913e943583847ff6b1197b8862e5564d6beb8ecc44f9c49dde185fb66", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "8e864b67945b1f8efc6503798fe6af2bd0abefe0c110295d41f9dc89604cd07d50701d55abdb", - "value": "1174791991299686473939288064" - }, - { - "id": "abecf30348c80060dc9147a47fe101bb0c91afaea8e00db21cc5a2751de65702", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "af9afcbd4e1401830e6365043e8218b30225d68491d95efa3aaf2a76684542679ac2d0a64704", - "value": "1137663826165810761506226176" - }, - { - "id": "6a7c718490b1f7e614ee1bef3f86bcac7942df845ff639f3818579557c358510", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "3a812c55b18cc07198403982989f2be6b3d9e65936d3adcb203c1dd4c44b9fd5c8daf35b36d0", - "value": "1056218927654520452632510464" - }, - { - "id": "91c2c6a0c0eae1eb3a7534bd397b5c6b8bbaf092d309ae702572191fe1912995", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "b0d4b0908bac355ff95357aa732c6e9cfaceec61adab7215cadd8c550e7fed5a481d84962d52", - "value": "1137032344123024837886083072" - }, - { - "id": "582fcc7e8889da1393c589e37815ef97b577eaf3cbab8e5a1acc444f4c9279b3", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "65784f8a76aaa2a85019e984d441f91b3227441f70ab84d920f8c4c44ebaaa503d3bc4d65d03", - "value": "1818911905938137325959643136" - }, - { - "id": "522bb4ffdbcfd028e3f68f37f965ed7809efe4b774ae0ea279b0a4cd980a641b", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "274eb7748986420fe03272b8407489fe2def339fa5b067cf3973b0312c31ab5034eaf60aaeab", - "value": "1355574581753041643957649408" - }, - { - "id": "bdee60db681a272c920c33302f236a66eb5ca3a6e780cdb77696d2c6a09fc0dd", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "6b0ccfd53e6db29ada7020d715c0aa4c6c25795817870f33db5d7afc9c616bf8316de79a47c6", - "value": "1196495029096854265283477504" - }, - { - "id": "47150eb71c875601d0f08fe95cd1095f36f7ef0bb6fe9219b272120f231ef40f", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "1ee0dae105b299adcd796845b840c8a5d918bf18b5107d1239da04fac5ded781ef1d43d6088f", - "value": "1126597611125252007715143680" - }, - { - "id": "3e99738908587b4c275a47bcf99d66feb0a02e664c704439950aac17bfe66590", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "7bc9990a325ff58c80342b2a6897eb1ff7e8db79968502ba14c0f81ade1ffcff7bbbada5fd1d", - "value": "1045537706447257674719559680" - }, - { - "id": "e44e87b174bcb8649ff9eaf037cc6a887692e72ed69c23b2ae744a7886a28331", - "fundtype": "siacoin output", - "maturityheight": 218191, - "walletaddress": false, - "relatedaddress": "030fbafe5e14a66a35065c1bd6e829daa647225b81e300ccd442330486a03a0b129624f71d57", - "value": "1058298590930085790310989824" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218335, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "5c7cab56889227741cebd3b7862a0c17536d459e296d53ae186a952a0d53834c", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "VXK9dsFP6BYZNp0x8imN4SDpvVsUwKM2ZFKs+a7aAyc=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1101609386888139423464062976", - "unlockhash": "05a9370dcb449c13e7e10b47aecb5c44382bb2d7487bff5646d4c9db17d66249d1f51352b88b" - }, - { - "value": "1441833412433868050386124800", - "unlockhash": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b" - }, - { - "value": "3037962155182634981904089088", - "unlockhash": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e" - }, - { - "value": "1043226148210964373299003392", - "unlockhash": "e4d8c2f201b74345f620576b150e3152db3ca765ce20ec68ef58a1156579f2d8851819d070a5" - }, - { - "value": "1957779746034875409559977984", - "unlockhash": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b" - }, - { - "value": "1083751647996077016344690688", - "unlockhash": "f8d9e0494ad786b0fd4d8580a075dfd058b032d702e381599b75a6bc840360b6ee38d50d9d1c" - }, - { - "value": "1320613451193167505457676288", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "2563537891147108866672558080", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1231430173813405305487228928", - "unlockhash": "607256ae73da72b81065e6623f06b7f46ec05c81b3a56c73fd63b5cd69d469d2b0da64c11062" - }, - { - "value": "1124761708039313690629242880", - "unlockhash": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6" - }, - { - "value": "1050765517181747133453893632", - "unlockhash": "77d2ab7e6d9ac003d82c4a78caee0a6eb4c73acb70f7974427eb99d852805efa5bf0a2e0e688" - }, - { - "value": "1193771747138222217691398144", - "unlockhash": "950576f4cfe1d0fc201af3cb09ca21352a26564c938dc9243617dcc795491c01b16d86a7c194" - }, - { - "value": "1188296472091250783958073344", - "unlockhash": "01d85d3d451fa46fc47d85301ad45d411bd450bf058300a2bfbc1c8fa01ebc26c1ddaa6fe925" - }, - { - "value": "1073322109320544936470773760", - "unlockhash": "6e678c7c7447aa852fc4d2d8fc84910a55687be384ad499194c9fc91a38dfd1062e6b1be5f6c" - }, - { - "value": "1003767521613787419925282816", - "unlockhash": "a44eab4a411cb2db8c41b40ec7f6b53edf4609b00d0402b3ab28ef8f2622cc1719897cf317f8" - }, - { - "value": "1015325272983196778104455168", - "unlockhash": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560" - }, - { - "value": "1002749998460573769083650048", - "unlockhash": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4" - }, - { - "value": "1078382352344677960049229824", - "unlockhash": "b6b272bca523cc9cb4b0c24d01d801b2f8a4b1ddeae4b3860ebdc66be2f5ba07cf8c74a1bfee" - }, - { - "value": "1043072391538320124589965312", - "unlockhash": "20d15eda3618018447255efecca7bc750bd86a6d6530f0f871dd26054613d7b11573315e9610" - }, - { - "value": "1325912019462442418568167424", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1256430234252488782517895168", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1054492808759622949362728960", - "unlockhash": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb" - }, - { - "value": "1047754339601896849828216832", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1061312768499911457985937408", - "unlockhash": "bfd937b7e1876cc12f586cbaeba822f9b7ba812e52950f517c067c214a7dfaf080574d355fa0" - }, - { - "value": "1112805458467940985500073984", - "unlockhash": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5" - }, - { - "value": "1150247585260781287016497152", - "unlockhash": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb" - }, - { - "value": "1063424339492337935354167296", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1244411212931334733961363456", - "unlockhash": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373" - }, - { - "value": "1057490209894187122015862784", - "unlockhash": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b" - }, - { - "value": "1013190258238752387323985920", - "unlockhash": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72" - }, - { - "value": "1029970897855858533490229248", - "unlockhash": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b" - }, - { - "value": "1050858548410087513251643392", - "unlockhash": "93272dfb1ab69ea034320c663729489abd19a768042a3566b3f2ea38b0ef484f12e79aa619b2" - }, - { - "value": "4003553331718952157462921216", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - }, - { - "value": "1034786953363634436053336064", - "unlockhash": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79" - }, - { - "value": "1030414933823935983225667584", - "unlockhash": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528" - }, - { - "value": "1024181410986019169971470336", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1026619613077162256183590912", - "unlockhash": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770" - }, - { - "value": "39654788484255843788045418496", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4586863512506887720486830080", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1045042958826263383157768192", - "unlockhash": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b" - }, - { - "value": "1040883321946725341791780864", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1237630587299625685070381056", - "unlockhash": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3" - }, - { - "value": "1850778280743234718182408192", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "3126361695128305452984565760", - "unlockhash": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e" - }, - { - "value": "2026544159156181503525781504", - "unlockhash": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60" - }, - { - "value": "3751949869950294124239257600", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "3593045867340092924034547712", - "unlockhash": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff" - }, - { - "value": "18075769611331927085737312256", - "unlockhash": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a" - }, - { - "value": "2431329188711932536924667904", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "1099698844514350849620705280", - "unlockhash": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "5c7cab56889227741cebd3b7862a0c17536d459e296d53ae186a952a0d53834c", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "+i+Wki455BwNLjCkM051y6p67ET130ysDc8aQVTUMTBqcXHdRcLAXcrkXs0uDqT/LMKFu889Ft3F9S6xfi8fAQ==" - } - ] - }, - "transactionid": "ed3a1224d4030ca8f43bf5aef1b859db6002570ec16cf29337d958ce4447b071", - "confirmationheight": 218198, - "confirmationtimestamp": 1564520963, - "inputs": [ - { - "parentid": "5c7cab56889227741cebd3b7862a0c17536d459e296d53ae186a952a0d53834c", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "5d7fd8d4be1ac7069be29ec8ba412178137fd79689c86e4d201faa361a9f448bec431eaec996", - "value": "131664742409420887819406557184" - } - ], - "outputs": [ - { - "id": "f62087fff9b325514bd9c3a162133c22989ee88297ed09d02f054e3adb067c56", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "05a9370dcb449c13e7e10b47aecb5c44382bb2d7487bff5646d4c9db17d66249d1f51352b88b", - "value": "1101609386888139423464062976" - }, - { - "id": "634c83738b32156d8fe9ab0434b8af0ed3bb0212d91d9a1d116a38e354e45ead", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b", - "value": "1441833412433868050386124800" - }, - { - "id": "acba908b8bacdc098ecf95e9f4477f9e1b544852e8ea04c107ad6f62bd300e2c", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e", - "value": "3037962155182634981904089088" - }, - { - "id": "33aa12d5afb0680482398ce3aeabdef17e7ad0fef585791cc81b070d578339aa", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "e4d8c2f201b74345f620576b150e3152db3ca765ce20ec68ef58a1156579f2d8851819d070a5", - "value": "1043226148210964373299003392" - }, - { - "id": "fd3811b095ad49368bfdef96cb1872337ba3f8f6cc5cf6ea69e2bddafa78d378", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "24640899907e4f87dbf5fb15314e1097e3242ba75a22fc900ce78a58e77cbd146a317a35516b", - "value": "1957779746034875409559977984" - }, - { - "id": "a1b709a9a3eb3a6a8370eef9f88c9fcd9e7272ea31f3415a1393a71994f5eb77", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "f8d9e0494ad786b0fd4d8580a075dfd058b032d702e381599b75a6bc840360b6ee38d50d9d1c", - "value": "1083751647996077016344690688" - }, - { - "id": "c51f47fba4bac3d6476a13209cf314a5676dc055262d99663eff12bc5d53f5e5", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1320613451193167505457676288" - }, - { - "id": "797d7b723b578c1a868a0e38c0f438a7d0a011f5bf00c3ac05cb5ae0a7451719", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2563537891147108866672558080" - }, - { - "id": "f7bb7f8608895532bacb78bfafc75bae4a1757abcd2e60f2daf5fd8c883adca6", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "607256ae73da72b81065e6623f06b7f46ec05c81b3a56c73fd63b5cd69d469d2b0da64c11062", - "value": "1231430173813405305487228928" - }, - { - "id": "4d5b7da7c219e0845b62f625b914225d66274c0f4b826c55731e22ac7a6e485f", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "62271585dd7b5d1ca299e010b07e442fff0bb8adb360983c405ece31d5f91ca2e72bd7f7f7d6", - "value": "1124761708039313690629242880" - }, - { - "id": "6983ee561a5668b7f78e7886afa577ab535c699d7e413c60f7e6c1eeb522282c", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "77d2ab7e6d9ac003d82c4a78caee0a6eb4c73acb70f7974427eb99d852805efa5bf0a2e0e688", - "value": "1050765517181747133453893632" - }, - { - "id": "91f9871817180c5b63f504f9c4987ad258f0638aebe197c8dd9a01f4bd54ae90", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "950576f4cfe1d0fc201af3cb09ca21352a26564c938dc9243617dcc795491c01b16d86a7c194", - "value": "1193771747138222217691398144" - }, - { - "id": "87d79c92643fc4cf73e7448494b6e2ac0ccd9932620ff7437971e69e7cf34cb5", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "01d85d3d451fa46fc47d85301ad45d411bd450bf058300a2bfbc1c8fa01ebc26c1ddaa6fe925", - "value": "1188296472091250783958073344" - }, - { - "id": "d5db3a9ec6dc160a3058d9c839bee9e93c5f866047d3a0c893accaec14cd6bfe", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "6e678c7c7447aa852fc4d2d8fc84910a55687be384ad499194c9fc91a38dfd1062e6b1be5f6c", - "value": "1073322109320544936470773760" - }, - { - "id": "592312e976bcde8a19a2a34ca8abbbf7cbb0b0446f65eefb01a367faead8a3d7", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a44eab4a411cb2db8c41b40ec7f6b53edf4609b00d0402b3ab28ef8f2622cc1719897cf317f8", - "value": "1003767521613787419925282816" - }, - { - "id": "d9407368c37e300e52f957e580d41fa20d697445c1a2883dd7fe03a3ca8b2396", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "7433418f66b05e4fbaba1f64070025e91a28fd1ec4f7f2a1f440a6f4f1e12e25daba6cfad560", - "value": "1015325272983196778104455168" - }, - { - "id": "05a90325c36cf335466331d57fecc81f390ba8d3fdca28be319ab8ddfad62f06", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "ad9159872e1d2b0ffb254d2a777ab0aa897c8fa855cccf5df08d09fd99f96aa107d05e37ada4", - "value": "1002749998460573769083650048" - }, - { - "id": "d0bfcdc433d1796b643542251119b955ee079b885f02aa2a0a6075fdec5efb52", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "b6b272bca523cc9cb4b0c24d01d801b2f8a4b1ddeae4b3860ebdc66be2f5ba07cf8c74a1bfee", - "value": "1078382352344677960049229824" - }, - { - "id": "88c7d0b5059699e831c19f1cd0ca42eb1ceb9b2c1a5b6bcb449ef635ff3fe53a", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "20d15eda3618018447255efecca7bc750bd86a6d6530f0f871dd26054613d7b11573315e9610", - "value": "1043072391538320124589965312" - }, - { - "id": "0c1ecbd345fd69ed93e2cc1862b42a1040d68c65a7697b0f7d21912d0a9bb9a7", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1325912019462442418568167424" - }, - { - "id": "c0919e3185eb9f4faf03748967d519fed0fd516ff42c4569ca43e9e2de346aea", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1256430234252488782517895168" - }, - { - "id": "86efa6d55dae65dd24fd9f0bbc76726353bcbfcb8f7d15925033b46f294adef6", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "f28bd547a206ee1101f78c40033874de2a62d027645790c57225c8a26d1728cb6120de1009eb", - "value": "1054492808759622949362728960" - }, - { - "id": "77bde1ef30733d2d158e4b758aff3b0c928e0752e5017671d86849771e143296", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1047754339601896849828216832" - }, - { - "id": "f0b92e01446e4e992e73b16e15398099c3904ab797942f421acddabd31027670", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "bfd937b7e1876cc12f586cbaeba822f9b7ba812e52950f517c067c214a7dfaf080574d355fa0", - "value": "1061312768499911457985937408" - }, - { - "id": "782b94816bde48379882cfe3c483d8c12c5ea43d10ec5c1f25b28e36053a87d9", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "06f41d093532be5704f505c1e4cf8d453f581e6321b3b053e8737e39959d234dc8d1bf72abf5", - "value": "1112805458467940985500073984" - }, - { - "id": "26ce6a0ba42311dfa704cf8ecde935e390807fdc20c75fc51d9aa28b16102665", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a9a59b1b5d003d574c2fa336bd27e92216fb202f6912a49bb1fec8c1bcb38fc09a4301e96deb", - "value": "1150247585260781287016497152" - }, - { - "id": "8de00a23f688ea28766e6f9ceacda0e6e3ecbfef9b7c5454126f447be036cda2", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1063424339492337935354167296" - }, - { - "id": "25bd6027692a343807efccc5396c281ab04ad0b5ab361f6558f8159957f4ce0d", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "3cd1530acaef819790dd2ccc311e7df73cd7419093cd22be87a20b087527350d5a99f7a8b373", - "value": "1244411212931334733961363456" - }, - { - "id": "20e79fe0c8e3b6edd67fee076840107003113732d228d5d142823f6ee554b486", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "e02bdb42fabb90f847e1437a98d30ea525e322040b1edf15b20cf5dfadc3846a2843fe02fb0b", - "value": "1057490209894187122015862784" - }, - { - "id": "107671edfb3d44e1ae5f290e8460d8e9e1e366859f94223d3f697ed8c3be4eef", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a413f1ceb37f898d3f8d08cbe6aafb8677ff6a9254e955f6f18905d68e83da84a2a6e00c6c72", - "value": "1013190258238752387323985920" - }, - { - "id": "5d0f0f147743e864be08f4f73e7f221919615585469efad462b44b55362ed727", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "8f6bd1ffb8124a6af77840ab229cb2785e9f55a5de3ec68143f403d3d02c6c6f76d12dcb656b", - "value": "1029970897855858533490229248" - }, - { - "id": "b118faca8f04abb0118863a827dddd6e6056fafe979ed43d5d3b0a823dbfde0b", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "93272dfb1ab69ea034320c663729489abd19a768042a3566b3f2ea38b0ef484f12e79aa619b2", - "value": "1050858548410087513251643392" - }, - { - "id": "b1191093f2e9c8283d7168fcefbb18a1aee957d5e9149162f5ac68ff57db4fd5", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4003553331718952157462921216" - }, - { - "id": "b7eee5a9c0ff3c3de5dfd06a0fe9ed10c28bb9c3a5e8b842dfdbebf888044d1b", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "1d3517b5ea7100c26081732df5ce7b7c66c4e0d528e5711477b0d234ba57e881dbf3471bba79", - "value": "1034786953363634436053336064" - }, - { - "id": "262ca73b90c815c65fea781ec0b24673730601d4fbc9522864081e38089cb238", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "7f7e27ad7f888997923f9e07a56d64358b7360ed2ad5aff486c2f2640673d1333ee3bc1d2528", - "value": "1030414933823935983225667584" - }, - { - "id": "5a04e2a22778976fe9997fda4124583a3dfa2ca896bb2adc3889d4310e0173b3", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1024181410986019169971470336" - }, - { - "id": "0b0667d8d84a4a97b723299c605ca6172ad971d34fa93feaca44e7836b4c8e88", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "cab5e96159b85b3696b564efbbfc870ad3e39e0f934dd68676f533e449c5e1c712f184c83770", - "value": "1026619613077162256183590912" - }, - { - "id": "17c5d4fc1520390b55d4c47591b56db4c30864086a8328550b4605332ab382e0", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "39654788484255843788045418496" - }, - { - "id": "011f5a9d51fd996adab3d7b4772dc9d4c1511d2d6e45ae106bcb2895b475a8da", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4586863512506887720486830080" - }, - { - "id": "06fb2f608de735d6acd7ed98b4f033d57e7288317aaf149d75982888bf06a477", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "a4cf90b823250b36aad60521587a6e672d6a4334abb2bf9cd5a8e4ccaf5ee9c1bfe0663a100b", - "value": "1045042958826263383157768192" - }, - { - "id": "1e7b57470da721525977b0ce9d372a0f51b805a1a778852707e6af0ce335c977", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1040883321946725341791780864" - }, - { - "id": "16ec2265d14cfc2b63e9fdad5a3ec47dd55fd6e5e944ca7b3119e44322f7b335", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "1c65de0e751834c36b9fa04d7c76cb3b0d63d31d47fc85a46a74a52b434d589dae71bb3172b3", - "value": "1237630587299625685070381056" - }, - { - "id": "4eef40797ab209e342ecc699ef16ed73f29f7019c5b66a46fad7f170cf82203f", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1850778280743234718182408192" - }, - { - "id": "7b58704044aaaccdb2e2c22c6a93402b5b07bbb50b32864975d8f59b329614ab", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "3ca729e03bcad696a2500316be194349069ee2823a7e953163f431e8d2d1a0f1d7a075315d1e", - "value": "3126361695128305452984565760" - }, - { - "id": "b32120aafdc83b524b6b9b01f0efeeec233b4e758e84eba479736e84e91b984c", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "c7dd7eceb85e6a883cbaf8538a914ff371c324e356837a394407537595e9dd6c93c49c639d60", - "value": "2026544159156181503525781504" - }, - { - "id": "96c16a05e3891f3234f7bfe0afff735e4b51f5975d10fa44b8f087fa2cc1e412", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3751949869950294124239257600" - }, - { - "id": "b3ea52035bdd37587306fcd18abc85da7b0b70f7aaddb4159221cebafc12861e", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "35a4f5652e7d8f56eabb107dd5910352b26140fe5e85864490ed656cb87431f5399be430f4ff", - "value": "3593045867340092924034547712" - }, - { - "id": "5274612cb7e8d62995706e670ca4b7c3747aa9e061b0126a66fb74128877a894", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "929fbc486561ef2e94d49d3fc74f568bb3f93212bc8a77169a5df80629f28c6fad24458bd02a", - "value": "18075769611331927085737312256" - }, - { - "id": "538af67f35e65db4ae2aa00d783c53dc943ed1d9df732bfcac4c8effac04ff9e", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2431329188711932536924667904" - }, - { - "id": "b3900e47e9dfe6fda70fa3467317be910360577043056d13154291f2a590e891", - "fundtype": "siacoin output", - "maturityheight": 218198, - "walletaddress": false, - "relatedaddress": "48c1b1a8113a0223daa119d2f52ae94148f312c5a646b066e5b5a5519f84fb30c2c86f00f037", - "value": "1099698844514350849620705280" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218342, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "da154c5c57b4efbd7dfc3a43b227287ef14f65d49d65b06893dd856bfc38656e", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "2PtE1wiHC7nS1wMJ2ohNZU4zWdXfm4n6kTAkX4/QA/A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "9324856507168334290486296576", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1000169546175999920507027456", - "unlockhash": "5805724e3d212e7c3f50dfef8fe4857080342b17a18ad1349becfd24bcb4f62f435a71322366" - }, - { - "value": "1997944138957871205997084672", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "1218210672133646281929129984", - "unlockhash": "feb7e62ce3282242b317ba5346e5ce0e452b1d1c5c5f4825e4d00563afb7421e362a75809757" - }, - { - "value": "1048215797733185386483548160", - "unlockhash": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e" - }, - { - "value": "1299384647940726203653029888", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1040234518495038997832138752", - "unlockhash": "6bb32646d771a721e164d4e9fb687f35e79ed607a6a23caf28d77a6cae78cd0051bc11f928d6" - }, - { - "value": "1005876969192317948894248960", - "unlockhash": "cb3098b79f5b7d3c12a56a28ea51a67c846ff0bbf9c3bfde6923acd74de136572001218ee677" - }, - { - "value": "1179735468025997956886822912", - "unlockhash": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791" - }, - { - "value": "1013871046416202163539574784", - "unlockhash": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c" - }, - { - "value": "1496287373292950449791434752", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1309861842149205365013610496", - "unlockhash": "9999dc7916efe2e88a8911966f89f6d633c18a0d9afe10b8f42f9b44c3c01ee3aa50ded42cce" - }, - { - "value": "1035461201259558361800638464", - "unlockhash": "945d62c6eead4d287f15108c9aa3cbcb3ef9e6377b5a312494a9adab79ca353f08b122cec4c5" - }, - { - "value": "1025333736597185243968962560", - "unlockhash": "c906fb765e09117ea5be5d17e15cd6f6b1216ed2925242dc73def252f5b5484bdf55e7ce05fc" - }, - { - "value": "1075686720430626062650179584", - "unlockhash": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f" - }, - { - "value": "1268193449464694742961881088", - "unlockhash": "b0e83e56d02c38bb124c8e8f2fb7b3a674c1809537ee372ba7155d710c1dc7e77b4dfd94a911" - }, - { - "value": "1025806680166501360975478784", - "unlockhash": "0a96b0378b199720a5f62895ebde2db0f7964d140f26c2df07ad37b8a910dbcff4111c3194a8" - }, - { - "value": "2429410786952499831295180800", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3892346188182760224456704000", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1088600543813461628482289664", - "unlockhash": "f0f9cd4c18ceb98e6740f532cf9bc2c1561cd86107fa84ad55b6200a7cfd761c117a3f9181ff" - }, - { - "value": "1905090790666028481080459264", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1176065318584568054361882624", - "unlockhash": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed" - }, - { - "value": "1031079597343053468263186432", - "unlockhash": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0" - }, - { - "value": "1293271823979813217079656448", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1062076952652163700713652224", - "unlockhash": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4" - }, - { - "value": "1244516611599816345951141888", - "unlockhash": "09bb5c2e45323c0e754c20722fa546b54d2fb7b66085af1ee1ad4272112d75aac862f40535e1" - }, - { - "value": "1160540259323951767838785536", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1043645746029953722596065280", - "unlockhash": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981" - }, - { - "value": "1651021311613644757459271680", - "unlockhash": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a" - }, - { - "value": "1240186398887919432738275328", - "unlockhash": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276" - }, - { - "value": "1768698925682669181017784320", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1103213564224881219241574400", - "unlockhash": "8c63942db9650488145cffdfc3df21e55183368d8b4f94474f74f7181cf746129510c8524f39" - }, - { - "value": "1224870618002931344549609472", - "unlockhash": "8a44b59eb63ef1bfe060a20cc6da87d6fc0b146464933eeb53902a45f0807367b608209b24af" - }, - { - "value": "1071599354675344187594899456", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1447688946160347488958021632", - "unlockhash": "1a8836ed69196305226cd3796c45e37dbf345b721d89cf1af592d4766995794c6444867d6487" - }, - { - "value": "2682812841515508961797734400", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1093110252496199342691778560", - "unlockhash": "08f7ee8f6ef2990e2cad618fd0cc4b0a11db88d7d4a202c224f7908a76da17bdd9814a98a536" - }, - { - "value": "1054392827939281162686431232", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1041805435062290232865161216", - "unlockhash": "67de23dae1b674b9d7b274df098c82f956fa97eeb0c5266471497757004a7e12c27960c08db1" - }, - { - "value": "1063415689048453699268902912", - "unlockhash": "915216c55b6ba0f804ee8dd5a5b08ca30625304cbe27b52ae729fee7625837aa364cbf158f74" - }, - { - "value": "1116860503035115336285290496", - "unlockhash": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61" - }, - { - "value": "1091355465727550742832611328", - "unlockhash": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca" - }, - { - "value": "1140019095914958390497902592", - "unlockhash": "57c7c816f85a909c00040eea8eea11cda7ae4de3b3c78fb4f389d8df04afd2d00fa663fafde5" - }, - { - "value": "40306632685464583636808368128", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "4068304344929585536377552896", - "unlockhash": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d" - }, - { - "value": "1116497619434669503652823040", - "unlockhash": "3fd471c1fb81347d484f0a1c4aa56dfc44694c2bf083bcae0c6b7ba015fe1e32cf21145a5a59" - }, - { - "value": "38538656533283402890436673536", - "unlockhash": "eeee8c05d9a8e231820a2f15be451d1a8f8fda2a607c95198c97060fa4473506c13f4b99cd57" - }, - { - "value": "4678675049896793952835600384", - "unlockhash": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a" - }, - { - "value": "1902976747623130618500481024", - "unlockhash": "380a8f5b9c5e3ae1e720b4441ddf7a4112cfda3e1e4e144d5c2e65377afa34acbf90f483c4ce" - }, - { - "value": "1517269903763120064483557376", - "unlockhash": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "da154c5c57b4efbd7dfc3a43b227287ef14f65d49d65b06893dd856bfc38656e", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "h4I2tuWEKYz9a2oCP54Qx22qLnIsXWhJCGlRaht/GJWYAYUshzkokc7MUBjSidmaHBHXezO3IJdj4Gi8qAEDCw==" - } - ] - }, - "transactionid": "7e8c5bce30419f050e0a308f9856142f61048743ff6242339fcfadf684c76e17", - "confirmationheight": 218205, - "confirmationtimestamp": 1564525403, - "inputs": [ - { - "parentid": "da154c5c57b4efbd7dfc3a43b227287ef14f65d49d65b06893dd856bfc38656e", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "1c457a3f626ca0ad4f7dcdbdf31b0c1f85ed62129b540f2e5eaa8b6402a0aaabe5aca7b24acc", - "value": "157612079049110494069070397440" - } - ], - "outputs": [ - { - "id": "aafa6bc724b6ef212fbbf04020eefb0e7732cfb8893612e29e1f01f7f20f1f57", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9324856507168334290486296576" - }, - { - "id": "67f36b3de51567b5502202d74a7872cb0e9ddd580fc804aa284302561e232a4d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "5805724e3d212e7c3f50dfef8fe4857080342b17a18ad1349becfd24bcb4f62f435a71322366", - "value": "1000169546175999920507027456" - }, - { - "id": "0985f7a8c73c167b0f3e33faf6a9f34e6b295fe80b1cdd41d6b17d386a8c8e5b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1997944138957871205997084672" - }, - { - "id": "4204fe258f9f25ea651508bb6293858ba2afecf86db2bba69ddfaa2584a51dc8", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "feb7e62ce3282242b317ba5346e5ce0e452b1d1c5c5f4825e4d00563afb7421e362a75809757", - "value": "1218210672133646281929129984" - }, - { - "id": "163df66eda9cb97e2f900972a16b45378580b323aefeae1ed56a68fbdb8d7bd1", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e", - "value": "1048215797733185386483548160" - }, - { - "id": "a83bcd560f69f2c8a3c7a9bfdd7ccc9d5f411c6d104d1d48b46cbf637e24414d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1299384647940726203653029888" - }, - { - "id": "7569b48da9174e9ea2ea6fad14a21b33272c6614cb256988340570608dbaa2e8", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "6bb32646d771a721e164d4e9fb687f35e79ed607a6a23caf28d77a6cae78cd0051bc11f928d6", - "value": "1040234518495038997832138752" - }, - { - "id": "73ab739b7b2593fea8925dc1fc6613af09cf87650b960e0fbd753e4702524a2f", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "cb3098b79f5b7d3c12a56a28ea51a67c846ff0bbf9c3bfde6923acd74de136572001218ee677", - "value": "1005876969192317948894248960" - }, - { - "id": "c33b0b4e58552caa766987b91dca3f1d3d3443042c048396f7be2fc77e6b278d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791", - "value": "1179735468025997956886822912" - }, - { - "id": "a22644fa56a6ed35274a1fdceac17ae4f7e85081f5460e90a9ee379631aa2868", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "9000e14a1f238382d4ea04b97eaafae04cffb89f1ae1e4b2f3b791a41456419eb80c993dd06c", - "value": "1013871046416202163539574784" - }, - { - "id": "50639eadb1d40a8a24bec727457d025908ff1f470cba3d7825c5255233af65f1", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1496287373292950449791434752" - }, - { - "id": "0e7df633c48d3a5b212f0538ff92d7599478d12ab91fb298ed7cb7e8142dd183", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "9999dc7916efe2e88a8911966f89f6d633c18a0d9afe10b8f42f9b44c3c01ee3aa50ded42cce", - "value": "1309861842149205365013610496" - }, - { - "id": "9b1846fe518bbe657cc1890063d183f7afec27a0b14324e2154a8a5dcdc3b7c5", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "945d62c6eead4d287f15108c9aa3cbcb3ef9e6377b5a312494a9adab79ca353f08b122cec4c5", - "value": "1035461201259558361800638464" - }, - { - "id": "9ff5c8fa98736a0ba9b1503b0904bef83d4f87c2ebc76af03c5b340db97fd5e8", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "c906fb765e09117ea5be5d17e15cd6f6b1216ed2925242dc73def252f5b5484bdf55e7ce05fc", - "value": "1025333736597185243968962560" - }, - { - "id": "6318d44a943b8af495f7e5dc5b0206081a01d0262a7ec6ed87e9a42ce088e35b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "880e8d88f1a5dbf200e1e1f4f6c938d300b8b1b19a4dfcfd1da36c058fc063bac82821bbb77f", - "value": "1075686720430626062650179584" - }, - { - "id": "541b532d5332a5a01b294e8cdabce9268a1d85d600c2c52fdb5e824707bed2bf", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "b0e83e56d02c38bb124c8e8f2fb7b3a674c1809537ee372ba7155d710c1dc7e77b4dfd94a911", - "value": "1268193449464694742961881088" - }, - { - "id": "ee798baa292e5095aed24164bad48a934895fce2223b031bd5bc8a1327faa83b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "0a96b0378b199720a5f62895ebde2db0f7964d140f26c2df07ad37b8a910dbcff4111c3194a8", - "value": "1025806680166501360975478784" - }, - { - "id": "b4addf59e3d939b027e2ca0999d5f5f24c533adae27d89588eb7ee5a54e9b7d3", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2429410786952499831295180800" - }, - { - "id": "d293e2a3f90e48943b69d3060237e686e46f2b550fce667a65ad8dc96b059a82", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3892346188182760224456704000" - }, - { - "id": "6d06054e31ce3cb633dbb5ec9d58832cef486c6da1689f5a1a6e41413b0bfac7", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "f0f9cd4c18ceb98e6740f532cf9bc2c1561cd86107fa84ad55b6200a7cfd761c117a3f9181ff", - "value": "1088600543813461628482289664" - }, - { - "id": "80b474a1ede1210ef21129994658e39d1a378aab3fa2c3f032f1f8c49608803d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1905090790666028481080459264" - }, - { - "id": "525c45e9e81bde297d5af82429173eebdfb1fb6697b28acf50db6aa49beb3557", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed", - "value": "1176065318584568054361882624" - }, - { - "id": "79edbdc7bd3c3d4704bbff9bc5eaeb79337dce908736eee68d8e4746204ebbb0", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "67446d17861d53a52d7bdeee2b2955e661b84cb5db6f2ff31311571d87f61eebedaddf87e3d0", - "value": "1031079597343053468263186432" - }, - { - "id": "3faba2b136c96e0f1fa672507f9c6a6af7e15dc7ae312abc8a578d5c531990d8", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1293271823979813217079656448" - }, - { - "id": "3c244b6a10df03de2e720dde4bafd43e1b4803b65ddd42c918617d256f66b574", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "07a1b3b6863423b626d10029990f5f2da99309d35ed816fea0180c83d0f29e8b912f9b733bc4", - "value": "1062076952652163700713652224" - }, - { - "id": "ec55e6b23c1e110095ac8fa0ccad94bc9ed3a246ca022c95023fbdf90bdbfd1b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "09bb5c2e45323c0e754c20722fa546b54d2fb7b66085af1ee1ad4272112d75aac862f40535e1", - "value": "1244516611599816345951141888" - }, - { - "id": "2aa6355b91b6cccdc666f4c9bd1a8a8ca5538684bbb5f7b3d90093f421bd3f63", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1160540259323951767838785536" - }, - { - "id": "21366b00826a73138ce53d3bd28e6a26a3e843de4356c5eaa555b4c1c8615e8b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "8096995617517380a19e9416cc7f84fc4b26f641c11de5432fafe43d5c8ffe26c6089af24981", - "value": "1043645746029953722596065280" - }, - { - "id": "1ac807382a1211ae8c0a7f184383500de3de8825e9c1eb2f6869ae82e321b54d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "d75ec34185a7fe422fca5925e58372cdbb475129dfa880386bf834bce3efc8fbd0cd549a445a", - "value": "1651021311613644757459271680" - }, - { - "id": "8e06d183269e94be4313e4a91049fc68c050be770a5f93117954dfa4043c8796", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "3d14cbab8b6149ed1881864c7bdf7e948965fb708e9a7df15451a3c6a22c49fd57a8ebdc4276", - "value": "1240186398887919432738275328" - }, - { - "id": "4bb12aba58930803120c3604c6e545aaaf831fa7cff69d858e4f25f60681a7b0", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "1768698925682669181017784320" - }, - { - "id": "53a1f1ffa840110c67011a0c1ab27ba8f07c4c4fab3440d76cb08eb34d04f0cd", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "8c63942db9650488145cffdfc3df21e55183368d8b4f94474f74f7181cf746129510c8524f39", - "value": "1103213564224881219241574400" - }, - { - "id": "5cb2a1ea2fd9f1dbb91214d42c6a9e966c7a9006ea1d533dab7c15eeb56b5f66", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "8a44b59eb63ef1bfe060a20cc6da87d6fc0b146464933eeb53902a45f0807367b608209b24af", - "value": "1224870618002931344549609472" - }, - { - "id": "37062e2c3d566dbd95b64184037efec96d058487381533614f3f9f6e5f8781ed", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1071599354675344187594899456" - }, - { - "id": "8c9bd119dd739edce52a0b45a49dbe78ab12cfe7e13ee1f7b1a59db8babac235", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "1a8836ed69196305226cd3796c45e37dbf345b721d89cf1af592d4766995794c6444867d6487", - "value": "1447688946160347488958021632" - }, - { - "id": "d1c7f9fe3981bd19f47c6a44e1d534e6cba234140d14639e88cb9a7c959335b8", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2682812841515508961797734400" - }, - { - "id": "bc7bbea6d3e4b4d9484539744b2fb084a2f4b3c0e2a1777ee895a61308e8223b", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "08f7ee8f6ef2990e2cad618fd0cc4b0a11db88d7d4a202c224f7908a76da17bdd9814a98a536", - "value": "1093110252496199342691778560" - }, - { - "id": "2f8e95dab4fd459c95043b0fb96978718c78b9b3f3bc542e94b817a2431d3d68", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1054392827939281162686431232" - }, - { - "id": "0b0e0456db7a6a4bf56fe923d6c0449988c79342a3510764c7aca20510c40748", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "67de23dae1b674b9d7b274df098c82f956fa97eeb0c5266471497757004a7e12c27960c08db1", - "value": "1041805435062290232865161216" - }, - { - "id": "1f924280b3a7814cebb035e1443055c078096e6d7dd616467d1047c832569038", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "915216c55b6ba0f804ee8dd5a5b08ca30625304cbe27b52ae729fee7625837aa364cbf158f74", - "value": "1063415689048453699268902912" - }, - { - "id": "df4ef5f3a353ea8f13644a4228236ff2ba9ef0ae464bccaaf365e9af38487b57", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "baa58b6a7c0452b459324d14eb2633a5d2cf1373e121fc0115e6cedd8bd5a6b7c1f12912ef61", - "value": "1116860503035115336285290496" - }, - { - "id": "39cb1f48de5ab86fffba76ff0b56944a2dd5279f13fc37e5ab765cec41197c4e", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "d3c7914eff04ec907327d930a71a451dbc18d37c8e6d336ee3634786c95f37c19a19df5081ca", - "value": "1091355465727550742832611328" - }, - { - "id": "710a2eb23ff2950f8cc31d5d808bbdf04e22b3a343edf06bc2acd2007d71c284", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "57c7c816f85a909c00040eea8eea11cda7ae4de3b3c78fb4f389d8df04afd2d00fa663fafde5", - "value": "1140019095914958390497902592" - }, - { - "id": "51d3ae50465fa0ce596e046b9b95df36db8b1068e4a0f5e2e9c96b7ba2a387f1", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "40306632685464583636808368128" - }, - { - "id": "3cbcd2bf8719feb97f612e4db2f6182e8035b311e9416ba03540a8b0a9f50aac", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d", - "value": "4068304344929585536377552896" - }, - { - "id": "a871be3612f754f8be429163ce1177b090b4be06a159ef295d7dd70c09f43bd2", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "3fd471c1fb81347d484f0a1c4aa56dfc44694c2bf083bcae0c6b7ba015fe1e32cf21145a5a59", - "value": "1116497619434669503652823040" - }, - { - "id": "2dce9873172bb9360a2767ab7c6e1e8459d7954f8a48fa924b60c822d6012079", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "eeee8c05d9a8e231820a2f15be451d1a8f8fda2a607c95198c97060fa4473506c13f4b99cd57", - "value": "38538656533283402890436673536" - }, - { - "id": "03274f316013fe6af58fcd64f55be62569476e13292f0c983b05e38629195336", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "903b9b4976145c691abf4e7c0d15b9fc06bde58f4a1a39218a51bfb8887328974830861f7c0a", - "value": "4678675049896793952835600384" - }, - { - "id": "3c73e6d3b888495f2585d6760e3a57d00027babcafd81151301123c58e0977b6", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "380a8f5b9c5e3ae1e720b4441ddf7a4112cfda3e1e4e144d5c2e65377afa34acbf90f483c4ce", - "value": "1902976747623130618500481024" - }, - { - "id": "500a3d782a135ab981cebbcf9eaadbd6bc71d0bf98752ff4674663103c863b2d", - "fundtype": "siacoin output", - "maturityheight": 218205, - "walletaddress": false, - "relatedaddress": "26a05f5ac9e7bf022eb88b4f5d5de5ce7a054e5a25c0d04e4b1c21af5e691aaec9cd8f36f141", - "value": "1517269903763120064483557376" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218349, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "39e705a05caf5538eab05a129dd474220f5993e20c17c438bd2bd26cbe39c5c4", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "KIAjyNRynizYbCHTPvbLOoaloZ3D+ptfafzcHSTs1/A=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1000969694279070148780425216", - "unlockhash": "95d69f93591343c2840f85fe107fe9f7bfb70ba7aedbd802dfd60132bdabd3e70c5c714ac446" - }, - { - "value": "1811467632880284890635960320", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "9360831205144632700321136640", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1006179245556945612254740480", - "unlockhash": "dae56db3f9556beab71482d0524aa77ccb2faf10924b52f14d882b7b09c44fec6d9392e1daee" - }, - { - "value": "1008930586637326941322510336", - "unlockhash": "29551886c9cddec2d84df20e1cfc437c30568892d8c3d7afb6eab33c041cf3c43f6a64835681" - }, - { - "value": "1202722110808619168816431104", - "unlockhash": "60f39ba329935960333c0862208c4381baecf295706baafd8df908fd8b65ba458979cb4491d6" - }, - { - "value": "1038710991256016567648583680", - "unlockhash": "5788e840f0ccd132002bf743e02a5601794e21b8c777ae60d331abf836d20bfb7efa797ece37" - }, - { - "value": "1065935469913239658690772992", - "unlockhash": "9300750a7ef29334af13b821130068023c5f8ac44c60666d9a4580b9a7aa7ddf04cd909b0ce7" - }, - { - "value": "1877374184021257418038050816", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "1086493253614190218773004288", - "unlockhash": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765" - }, - { - "value": "1131426884447886199159783424", - "unlockhash": "05a99ae037bccc90c283ca2c48e81242b8fb83597134dffacc91f29e88c0e4269b122eeb1d69" - }, - { - "value": "1849804874779028034995355648", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "1150627885364452111533211648", - "unlockhash": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d" - }, - { - "value": "1028591604521835540186595328", - "unlockhash": "cd7cc95398bc5eeafd5a0b551e484704da8a7c480050fb8ef0b1e9c7161a72fa16d55b38113c" - }, - { - "value": "1079884381028604631610556416", - "unlockhash": "6aef4d36ed7dcc6f0c90ff0dd3d01476b809e2cfa296645811c72903e75c992a2b7fc602b2d9" - }, - { - "value": "1374080781034223445059043328", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "1038298646141056505688440832", - "unlockhash": "b780a418d20a46c20f5e376ba34fe44960bb9262161ae95d5c5d79bddb560c9a816a1589e02b" - }, - { - "value": "1087406915094322720566411264", - "unlockhash": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d" - }, - { - "value": "2334855419743535948481167360", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3925979327395286080718635008", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1198403441432822660655218688", - "unlockhash": "e7a8361eea3dcc5cdbbab60954f32e833ae15797432d90a4bbc8c022432e9f585e06c14c854f" - }, - { - "value": "1032613658889263765808742400", - "unlockhash": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d" - }, - { - "value": "1031631826645811904676167680", - "unlockhash": "f688436fb26af1812b2adb32cfc81baef0781bf50e72d4105fc2154b41e1ce93f7cdb8b34ef7" - }, - { - "value": "1136569464570762139770290176", - "unlockhash": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed" - }, - { - "value": "1160304073391180741443846144", - "unlockhash": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03" - }, - { - "value": "1041638868556293794882519040", - "unlockhash": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2" - }, - { - "value": "1313577828843958493849321472", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1087117031783146058284662784", - "unlockhash": "4f016ae3047cc0700ff06e8da50ee5fff070d5b90f54030d03547dc1b1b1b369ff47ee39258f" - }, - { - "value": "1016836574662642461812719616", - "unlockhash": "13f69c4f4e2ca8017cbc37bdf165765f8cf13a9f4634d82ff656df2ccd304429dd3951dab861" - }, - { - "value": "1075403472347584438410936320", - "unlockhash": "e84b770898c8af986cb1375a0de6ab8bc4222fabb15c0b153bdd44638dbfbde53353d19479f8" - }, - { - "value": "1050467717491356442724139008", - "unlockhash": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5" - }, - { - "value": "1016330081927796551015432192", - "unlockhash": "b5da596f1cfcd6c299ce89146e10594e0522bf54ced23d92b1ccb61dfee9c874663e702ffa0e" - }, - { - "value": "1793807289582757507038707712", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1043084342044283041945747456", - "unlockhash": "30e7bced38f6ed61bfe4fc14eec8c62cf9ad9f376759d7b7428e6dec3ee6d023696a511038bd" - }, - { - "value": "1109908749193583691450286080", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1034642016489760806416678912", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1017007096628680836908285952", - "unlockhash": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c" - }, - { - "value": "1041941969856408686488715264", - "unlockhash": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1" - }, - { - "value": "1038005732849041615355904000", - "unlockhash": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b" - }, - { - "value": "1015388201711329135754477568", - "unlockhash": "37c8cbdd783ac2a78eba45c5d139f81a711fcfe4da3e130e6d09e1bedf07bfefe479fae11422" - }, - { - "value": "2669085875713900136527560704", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1184717362905257752329584640", - "unlockhash": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910" - }, - { - "value": "1056242066590888441913016320", - "unlockhash": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc" - }, - { - "value": "1126309769279681500797730816", - "unlockhash": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a" - }, - { - "value": "1059060887105265750862987264", - "unlockhash": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3" - }, - { - "value": "1139076400988056078930804736", - "unlockhash": "c5e17db99b64b7b2c01e60b3b2b31fbe7aa148bf1a80b731561002d559f06a6b5268f08d72e6" - }, - { - "value": "1701738595763521060348100608", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "40004777774761483795483852800", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "3919919926163401134124826624", - "unlockhash": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d" - }, - { - "value": "1002110819802868110864678912", - "unlockhash": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "39e705a05caf5538eab05a129dd474220f5993e20c17c438bd2bd26cbe39c5c4", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "I/WLrE8/1ZpTkskF8tWwP36l8BIzh1Jc4EZGIBtyP+cZ6unZn3QJlG0+7oRTEJVhzaqlc/t/Rd3307MCfwM8AA==" - } - ] - }, - "transactionid": "7f34cc860a267744a00fbf2bf3fd68cd07db9fa49f1cc4d118e65c2cef630838", - "confirmationheight": 218210, - "confirmationtimestamp": 1564528139, - "inputs": [ - { - "parentid": "39e705a05caf5538eab05a129dd474220f5993e20c17c438bd2bd26cbe39c5c4", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "649cb7cd1c82e1993213ab94e5f7bcbdcf963bbce918d8cf139795fa6d0e44d0aa7e783b25ce", - "value": "113578530011634603080156758016" - } - ], - "outputs": [ - { - "id": "438e842895c092f633d36ee716495fcc0d0c4dedefb4e2177fba76f406242077", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "95d69f93591343c2840f85fe107fe9f7bfb70ba7aedbd802dfd60132bdabd3e70c5c714ac446", - "value": "1000969694279070148780425216" - }, - { - "id": "ee3bb939ca1f921c1238f4fcfc0c22d42ed8d3f8c678bd126fdbc7809759c567", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1811467632880284890635960320" - }, - { - "id": "88dcf7646c5f2e9fa051c819b2dc7f999a28240b48fed5856907d99eb06c6412", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9360831205144632700321136640" - }, - { - "id": "0aae8f8fcbdd15b0754de4cd18c761f863f6ff57c84f7aceb41ff95990afc97c", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "dae56db3f9556beab71482d0524aa77ccb2faf10924b52f14d882b7b09c44fec6d9392e1daee", - "value": "1006179245556945612254740480" - }, - { - "id": "dac04e9e09be8280aca5a49dcd134048f060fcb3b8eb9f10f194f8e517249100", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "29551886c9cddec2d84df20e1cfc437c30568892d8c3d7afb6eab33c041cf3c43f6a64835681", - "value": "1008930586637326941322510336" - }, - { - "id": "6c895c0d76871258eb667e6492094725b7967f29b34e19bda352569fbf55f225", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "60f39ba329935960333c0862208c4381baecf295706baafd8df908fd8b65ba458979cb4491d6", - "value": "1202722110808619168816431104" - }, - { - "id": "dd4436db813024489a0a3e6d37878fc931e8870fdcdf8de51572bda524374e98", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "5788e840f0ccd132002bf743e02a5601794e21b8c777ae60d331abf836d20bfb7efa797ece37", - "value": "1038710991256016567648583680" - }, - { - "id": "82634a54f91a615ee2cf9f1c9726f68bdf075ce27ddb0a20be8a9d85dba3d584", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "9300750a7ef29334af13b821130068023c5f8ac44c60666d9a4580b9a7aa7ddf04cd909b0ce7", - "value": "1065935469913239658690772992" - }, - { - "id": "a87cb2d5876cd91b86dffae9bac7d489da7926f4473211c8ba490c2b004e3203", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1877374184021257418038050816" - }, - { - "id": "9191025fc80bfb1dff9ed7ed5933a3130fe3b86e1d66802b420f37b87a16023c", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "535d6aa6612095046e4a53d10e2927772d26abc0b0721bc087a7a56e1b32af1b4cbc584d2765", - "value": "1086493253614190218773004288" - }, - { - "id": "18935646df4410894c6b53330eebae1b40e6c9ca733c3b644775ac1247826577", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "05a99ae037bccc90c283ca2c48e81242b8fb83597134dffacc91f29e88c0e4269b122eeb1d69", - "value": "1131426884447886199159783424" - }, - { - "id": "b02d952e52954457ac7fee0ee2362038a617f68a259d15a9abab949f53ce9d87", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1849804874779028034995355648" - }, - { - "id": "e227c1eb03af5ee09646002fe23279733d3dd6391234e82f87645fac2479e101", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "13fd0552b12734d4d670fbf801ae339fe716683338ab23f8a26a296e03ce7e540d68d792e72d", - "value": "1150627885364452111533211648" - }, - { - "id": "894f1563ad0a5bed86a30568ee60f32b4b3a85c73f0a5e5231261911223183a9", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "cd7cc95398bc5eeafd5a0b551e484704da8a7c480050fb8ef0b1e9c7161a72fa16d55b38113c", - "value": "1028591604521835540186595328" - }, - { - "id": "0b44cbc3e5188d916c5fe2dc55276d0f434de4f634dec2cd6a62f09e85e3283b", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "6aef4d36ed7dcc6f0c90ff0dd3d01476b809e2cfa296645811c72903e75c992a2b7fc602b2d9", - "value": "1079884381028604631610556416" - }, - { - "id": "6e002ffa5688f8ea7ee44888ea239142bcd50bc1fcd021aa6c94c729b439c26d", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1374080781034223445059043328" - }, - { - "id": "11f45d9edffe1ecddf8cfdfb52fc49e2047810a7dc7c1ed0700494fc531625a5", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "b780a418d20a46c20f5e376ba34fe44960bb9262161ae95d5c5d79bddb560c9a816a1589e02b", - "value": "1038298646141056505688440832" - }, - { - "id": "e16a07dce3e0a57ca64a7e828f0eac7d2e9dcce28c496c8948b9c1c38e4a93b8", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "cb6ad19973e966defcf55f31b5477fe99db73881643bcd4e44c7a31a3779302c3206fd4ab69d", - "value": "1087406915094322720566411264" - }, - { - "id": "90410a2a256ae3b65f268411860f427818e1cb725b62f234a7858a169f34a514", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2334855419743535948481167360" - }, - { - "id": "c0ddef988595af57ee37877efae34f8af79c6c878b21519d29f6d5139be89ac5", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3925979327395286080718635008" - }, - { - "id": "3a7592d50593aeef83291ce90ffc2599afcd0c372a179cadd132a20127dad0b0", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "e7a8361eea3dcc5cdbbab60954f32e833ae15797432d90a4bbc8c022432e9f585e06c14c854f", - "value": "1198403441432822660655218688" - }, - { - "id": "2532a3ce60546fca640031c53f0bf8d54502d895ca217f040677e84d984d377f", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "5e397db6060274c5b83572a4fcaddb02a30c214c25b8081289e9243d438dabf7525aee8af14d", - "value": "1032613658889263765808742400" - }, - { - "id": "0636224287c655b34a527d1f6caa467d1d47c9c6d59ca649eca90bf7ba0ce581", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "f688436fb26af1812b2adb32cfc81baef0781bf50e72d4105fc2154b41e1ce93f7cdb8b34ef7", - "value": "1031631826645811904676167680" - }, - { - "id": "1b1c6ce50db54cdca55f1ec41de76278bd1b7c6f1e921729134619e7a29b729c", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed", - "value": "1136569464570762139770290176" - }, - { - "id": "2b5b52a61a0132adb70b3ed89092e0f66253cc3fc74a0694e66b39924d978e84", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "1a4f6bed346d77c47c893211763e9a8f537f3af6fb52c5fbd9946d58a034cafa47d81dfe7e03", - "value": "1160304073391180741443846144" - }, - { - "id": "dc7c93d5abe2622c7097b16d673d0ebcde0f8edcb2f1c7199b997360fe80bee3", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "c0348cb17d3488f24b7bf92238a625ac4f0262104f1b2ab3747bd91fbe7e72e62b8c4648c6e2", - "value": "1041638868556293794882519040" - }, - { - "id": "817e20e53a1c50c97af9f29fb2269a0fc65e4997cf46e5e1b378ed650737a224", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1313577828843958493849321472" - }, - { - "id": "a02dc8df53a689488ac246edd0f5ae96439ded07ffc9841fc82db02fa43bfa82", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "4f016ae3047cc0700ff06e8da50ee5fff070d5b90f54030d03547dc1b1b1b369ff47ee39258f", - "value": "1087117031783146058284662784" - }, - { - "id": "94c960e3d7bbd942f5cbab1548d749b7e5ed5f7b879f43a63b840a081b46ad17", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "13f69c4f4e2ca8017cbc37bdf165765f8cf13a9f4634d82ff656df2ccd304429dd3951dab861", - "value": "1016836574662642461812719616" - }, - { - "id": "67923187c37c50c1ecd074efed822be08728ec23ce94f73ee7458907424232f0", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "e84b770898c8af986cb1375a0de6ab8bc4222fabb15c0b153bdd44638dbfbde53353d19479f8", - "value": "1075403472347584438410936320" - }, - { - "id": "c9a3af7b7300f2902f1b4b74d7cd85d919f6f85bd374f823770305937666d23d", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5", - "value": "1050467717491356442724139008" - }, - { - "id": "beec4dcdc074ea54af389bbfec5444935c4862f86bcec8d6687d0336492184ad", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "b5da596f1cfcd6c299ce89146e10594e0522bf54ced23d92b1ccb61dfee9c874663e702ffa0e", - "value": "1016330081927796551015432192" - }, - { - "id": "1721df375191555080cc5561bdb65bdc17d0f270e5b50ed80255b4af75db5356", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "1793807289582757507038707712" - }, - { - "id": "365d2027ccf45a8837d44e0d4f225b508f257f4decf2f32f8644ff073d48bf59", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "30e7bced38f6ed61bfe4fc14eec8c62cf9ad9f376759d7b7428e6dec3ee6d023696a511038bd", - "value": "1043084342044283041945747456" - }, - { - "id": "b55f53df72666ecd4a5d1004d0da972735f8e017844c59c72571ba2a87422edf", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1109908749193583691450286080" - }, - { - "id": "5c244c68b2fca2f3a08c4e2921070d1947e5c4b90a6ae8df0d262e807ed6727d", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1034642016489760806416678912" - }, - { - "id": "eb7a73ecaef6968c3a8c988d28bc8116d0e267f5587ce03693937a75d758ee68", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "71b1011fd55170b040a9be2cc4215787f6897ab6a94a3207f5784ffab8d69b9536b4bda4db0c", - "value": "1017007096628680836908285952" - }, - { - "id": "df85b973c1d21b3e735c2923d891248f07159f518bb216681eba07ab6d29351e", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "adfae3d393dcd4acee50ecaf40ec5c384fd89c879f77010da3bcc431ac0093a3a6c1441ddba1", - "value": "1041941969856408686488715264" - }, - { - "id": "9189d57fdfdaa0be12fad3c8cc0258d21868b7db428a6bf53d695c2eb14f41eb", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b", - "value": "1038005732849041615355904000" - }, - { - "id": "8dbd59c6574709e74af64bbfe8670a82cc3952da0de20b62b6334f3e74bca51e", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "37c8cbdd783ac2a78eba45c5d139f81a711fcfe4da3e130e6d09e1bedf07bfefe479fae11422", - "value": "1015388201711329135754477568" - }, - { - "id": "36b443cd671b1c427ec9570d55e5e91c884b7c6043a26dd1c86b8b0a5b004653", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2669085875713900136527560704" - }, - { - "id": "e412b7acb45746763d93f42aee926685c28cdef9aa822293ed03118de49e16fe", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "e377f542f1db16aa0b3d82e0c472143b00cef8531902768c067a75e66b00a36d3f727364e910", - "value": "1184717362905257752329584640" - }, - { - "id": "1eacd69bfebf60d06f41d3f676816e10f8c3f383ede076ecae473d1b7434e310", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "f83ccaa7fd4acf4895fbda209c7dc191c87b18e8966d46c3a2ffc2c31b74681d426989a06fcc", - "value": "1056242066590888441913016320" - }, - { - "id": "9250abe16937a710ed075201e70b13573ae4483378257ad8a82f6a5764f66315", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "7e1fe1d4ddfa5a73396d701a8916eb685d1cb0a3f1a1e5dce1b98f9d9c4d0fc106de64bc5f1a", - "value": "1126309769279681500797730816" - }, - { - "id": "8a22aa74d33a76edd79a53794e7e28775049aabc158e9c4ae4a89d4548224e6b", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3", - "value": "1059060887105265750862987264" - }, - { - "id": "b16863a1f648a375774667477b2f404a6cd025496cf6d84c1b9974c47f401222", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "c5e17db99b64b7b2c01e60b3b2b31fbe7aa148bf1a80b731561002d559f06a6b5268f08d72e6", - "value": "1139076400988056078930804736" - }, - { - "id": "21ebd317802263a41c00f89f62eaac7de74023451e91e4d86442523a071a6f84", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1701738595763521060348100608" - }, - { - "id": "d2ca54be7c6aefdf2c1ea4d050cb4923e6df5382022311543a01e92336e53572", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "40004777774761483795483852800" - }, - { - "id": "12139b5e00b955c134699b0a4f543502b4fceccb92bb294349b7f8c158f6a6f8", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d", - "value": "3919919926163401134124826624" - }, - { - "id": "0e6c31e19fe4b3705ad66b0f4dd36f3a5ae2f7034cc427176b177b3e03bd6299", - "fundtype": "siacoin output", - "maturityheight": 218210, - "walletaddress": false, - "relatedaddress": "15a8a66b5adbd08950471692df01d2aba2f9807ac9b8841ebc74ae326c746712d41edb3832cf", - "value": "1002110819802868110864678912" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218354, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - }, - { - "transaction": { - "siacoininputs": [ - { - "parentid": "7e60e11e135ae790b13516498552f709e1e3da404917a8dc1e024401c18bc037", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "Gsa+KS/Ze5D3eDCGRrGWbrYDED/48ZVm7caYDtT95uA=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "9165824957665297586666340352", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1888365477049359648054837248", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "1168809263448245754373603328", - "unlockhash": "feb7e62ce3282242b317ba5346e5ce0e452b1d1c5c5f4825e4d00563afb7421e362a75809757" - }, - { - "value": "1302876849187669727897452544", - "unlockhash": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029" - }, - { - "value": "1072848921926125165402390528", - "unlockhash": "6bb32646d771a721e164d4e9fb687f35e79ed607a6a23caf28d77a6cae78cd0051bc11f928d6" - }, - { - "value": "1264902435133263637594505216", - "unlockhash": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959" - }, - { - "value": "1048846465146262132340490240", - "unlockhash": "f0acad9dad2a3f7384b26d736c23f7cb7c48c5fe5e1f407c1159102840645aeeeef449d3c0e9" - }, - { - "value": "1091469116185035139831431168", - "unlockhash": "b54275ba6c1d654bb685b212b33cdec726121b235ce56e62e4f2fdc31c2fd67c7e1839604451" - }, - { - "value": "1080826972896035921539366912", - "unlockhash": "dfb1bae8cf60ae51fc90df58ec2224b8c3dcd2905e15b5dd901b88925115efe2898b40555a6f" - }, - { - "value": "1004270963685163740867461120", - "unlockhash": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e" - }, - { - "value": "1150109123708151166220107776", - "unlockhash": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791" - }, - { - "value": "1036640274591239455879725056", - "unlockhash": "6e678c7c7447aa852fc4d2d8fc84910a55687be384ad499194c9fc91a38dfd1062e6b1be5f6c" - }, - { - "value": "1352644985418658576387801088", - "unlockhash": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd" - }, - { - "value": "1021843942974976853901049856", - "unlockhash": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74" - }, - { - "value": "1314829592809261090607202304", - "unlockhash": "9999dc7916efe2e88a8911966f89f6d633c18a0d9afe10b8f42f9b44c3c01ee3aa50ded42cce" - }, - { - "value": "1141089271972472367239528448", - "unlockhash": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548" - }, - { - "value": "1355333369771345210432290816", - "unlockhash": "ffe2a7e2713b22d3bce222fe57b9904c62648f4210695d113fca4b195e010bdfdd552e844677" - }, - { - "value": "1036478171156637642563551232", - "unlockhash": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba" - }, - { - "value": "1024049210006678884198662144", - "unlockhash": "8089f9e4c9114bbd72311e99e9ee90daec45784955deeada2a6e44e5ba89d0f218c93aaea681" - }, - { - "value": "1293071543054818269281124352", - "unlockhash": "b0e83e56d02c38bb124c8e8f2fb7b3a674c1809537ee372ba7155d710c1dc7e77b4dfd94a911" - }, - { - "value": "1029173255091547976105590784", - "unlockhash": "1205b6812400d9e92dbe509a62915b71329f08096e44a0543f0111bf5f4a8538fba5f26cfc8c" - }, - { - "value": "2425257832252095260058976256", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3617369922144810797467959296", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1033160904009990725537890304", - "unlockhash": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e" - }, - { - "value": "1116525743403384208888692736", - "unlockhash": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46" - }, - { - "value": "1917838746716651279127412736", - "unlockhash": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae" - }, - { - "value": "1098031315041260647468761088", - "unlockhash": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed" - }, - { - "value": "1286469409019987384101502976", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1000061597571348605781540864", - "unlockhash": "5f33f85f7f5c48fbc683721f96ccef67a7e73a8b0114ee88431d14a6695e9eef317b1c2bfc83" - }, - { - "value": "1021783772760413842580832256", - "unlockhash": "f5bf617d29675a90a87d777ef04b2041b0d48200daa17f7582c5aee407c07e6338d27a77b10e" - }, - { - "value": "1221836259168042937121505280", - "unlockhash": "09bb5c2e45323c0e754c20722fa546b54d2fb7b66085af1ee1ad4272112d75aac862f40535e1" - }, - { - "value": "1039917787817745226314809344", - "unlockhash": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea" - }, - { - "value": "1164108992282494355476840448", - "unlockhash": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d" - }, - { - "value": "1191309036065440029382017024", - "unlockhash": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7" - }, - { - "value": "1071971606891981444033789952", - "unlockhash": "7a478c4ab546a9a9d8a853057666a4b467aaf9a3901ccfe9483e33bb1b227bc9856dbb8cf096" - }, - { - "value": "1118175122431054285420494848", - "unlockhash": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db" - }, - { - "value": "1769853972144696986890665984", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1028028091023174566441648128", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1146423028587234015914229760", - "unlockhash": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd" - }, - { - "value": "1057690240430713980116271104", - "unlockhash": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44" - }, - { - "value": "1004798706672485772963872768", - "unlockhash": "fd8e5362e3b79f3a34776628530abb4ad6ab91af831b949c5a848259350aa677bd710627cf83" - }, - { - "value": "1207603454811790710874701824", - "unlockhash": "9a0a22661a9350b65d88586c0a871e0026569d21baf8c5bea8628d2373e334a9e5c963feb720" - }, - { - "value": "1031841197655644553470672896", - "unlockhash": "c1eb367f0ab94dae5f170cf7ce88b89bdb0113322fe45f06d04785a0bc694bee6ea7ec291ed7" - }, - { - "value": "1090720230233147463826767872", - "unlockhash": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797" - }, - { - "value": "1181057332467665000063565824", - "unlockhash": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0" - }, - { - "value": "2622800473002038421098594304", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1012188529572128089116246016", - "unlockhash": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc" - }, - { - "value": "1073757300431476341335392256", - "unlockhash": "c068407db6772e6f1d42e68ccb4f70832efd0d015f11afe1e8833dfe4d5bbf1d8b243c5af56b" - }, - { - "value": "1294271990984335242928062464", - "unlockhash": "b9147be6caaa55b90a6980440ed497cf53d46bc2a608b634e0d867e16671e3150aed14259202" - }, - { - "value": "1172325685369684036909268992", - "unlockhash": "57c7c816f85a909c00040eea8eea11cda7ae4de3b3c78fb4f389d8df04afd2d00fa663fafde5" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "7e60e11e135ae790b13516498552f709e1e3da404917a8dc1e024401c18bc037", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "XLcXY/exmo+qDcqs4XdAir/xtvxoJWc+evU4Q6Hu/wDyU1e6gaNdUuu5FOm4qsllYP04PAJ9xcdMg16+xPbmCQ==" - } - ] - }, - "transactionid": "81bd4594379b1afd77273cc07c63f772062abafe32ba77b70f72402fcb574be8", - "confirmationheight": 218217, - "confirmationtimestamp": 1564532393, - "inputs": [ - { - "parentid": "7e60e11e135ae790b13516498552f709e1e3da404917a8dc1e024401c18bc037", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "234f768147ad4e7935502ffdaf36d447bd31f0cc17d143f044a4b798c61cd5cfe39cac707669", - "value": "71861722443841162158097498112" - } - ], - "outputs": [ - { - "id": "eb836a2d0f8d179bbe2f4e6884d9c16f7bdc3f5ba2674ee5b603bd47f0bbb635", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9165824957665297586666340352" - }, - { - "id": "5c446659cd419c0bb6a164b24f679a9d82e804b91f344978ec4ecd7dad670454", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1888365477049359648054837248" - }, - { - "id": "d09c0eb12c769f68d8eb6781edf01416e402d39c341f93750ebb57976c9f48d1", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "feb7e62ce3282242b317ba5346e5ce0e452b1d1c5c5f4825e4d00563afb7421e362a75809757", - "value": "1168809263448245754373603328" - }, - { - "id": "8eabfcd3051a11e81f6b6e323e9ac68f156dc368cc0e6826c7a5b4794f627c82", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "9acddb6c4a3f0f90345222808c9bf2f18bb3cdcfdf6235455026ae49e45229f95139247f1029", - "value": "1302876849187669727897452544" - }, - { - "id": "f04332af5984edfea26f11f84618c5788465bb4b7668fea49706f3dadd7dda4d", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "6bb32646d771a721e164d4e9fb687f35e79ed607a6a23caf28d77a6cae78cd0051bc11f928d6", - "value": "1072848921926125165402390528" - }, - { - "id": "0bc9e3cde3b100e23a134ba0fadba5c6d0f9de65f237b7fb6efcf495ee5d1397", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "a764a61dce07cfdc433f6d9007844c631059dcfba6caabc2bb9ebcfb942b00e0b8bf9dabe959", - "value": "1264902435133263637594505216" - }, - { - "id": "e60c2c9939f0bdf4259781cf2c39ff6796650365d01b5528b53cb1866262fe19", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "f0acad9dad2a3f7384b26d736c23f7cb7c48c5fe5e1f407c1159102840645aeeeef449d3c0e9", - "value": "1048846465146262132340490240" - }, - { - "id": "56c1334bc7399c907fbbce9139ad8bdecb66a67f3bb940755921e7b1c3851c53", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "b54275ba6c1d654bb685b212b33cdec726121b235ce56e62e4f2fdc31c2fd67c7e1839604451", - "value": "1091469116185035139831431168" - }, - { - "id": "71c0b829617ea9da6c1161cd96ca72ec86b493dd5a254693ffbe30578eed6026", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "dfb1bae8cf60ae51fc90df58ec2224b8c3dcd2905e15b5dd901b88925115efe2898b40555a6f", - "value": "1080826972896035921539366912" - }, - { - "id": "6e52e9b48f60129d08d864c0b181c6ab1a9ff227ea9b36aaf01f90923f6ec98b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "a511545744eb42246e7c69533dc99f786247757974fd672a5a7dc425098329c7aec39d084d4e", - "value": "1004270963685163740867461120" - }, - { - "id": "6d30376612b249576b95128a564b89e5bd5f92ff9d521542f67c24b521389673", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "9753714f3d2ea46a6cfabc930c22085e0f4a81f1655689c3e006900eaa829d788d6e31b20791", - "value": "1150109123708151166220107776" - }, - { - "id": "65dcad45322466c9418fccbe6cde25ffc98bb5b7196e4b1b2ee41559df79d5d2", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "6e678c7c7447aa852fc4d2d8fc84910a55687be384ad499194c9fc91a38dfd1062e6b1be5f6c", - "value": "1036640274591239455879725056" - }, - { - "id": "8c08231445478a79e8300fe92e43b0bb9d17d74ba703c3a773b3b957eadcec7f", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "33a98fde63b29bf91a25a1d901fc99baf68ed8433e1274d02e463f2f5df96473192912558bbd", - "value": "1352644985418658576387801088" - }, - { - "id": "880efd1e508eb4b1d3f8ab42db6b084d2b48a4eb0e2f283ac240be85c1553bdb", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "599728538f3fb9513d52169e0f870810359f679ebf4e3274844881860fadb7892a132d54ac74", - "value": "1021843942974976853901049856" - }, - { - "id": "a5caf850729db3db6a48950a353f6d01f1451e097f98b7f279b0ac178c2c123e", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "9999dc7916efe2e88a8911966f89f6d633c18a0d9afe10b8f42f9b44c3c01ee3aa50ded42cce", - "value": "1314829592809261090607202304" - }, - { - "id": "12183fc4d6d463f461feb3a7f23ebd025807068c902427170bbccb5e136946be", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "1f150d9a682137993ef5c5ef7269465d6e9b73cef9c4694c0ddac9e9fb9a3216f3de29a14548", - "value": "1141089271972472367239528448" - }, - { - "id": "528d27f1b1a8cad3a9f7470f4a5a5c22eb8c25f3f272069f0c55f3f87909c949", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "ffe2a7e2713b22d3bce222fe57b9904c62648f4210695d113fca4b195e010bdfdd552e844677", - "value": "1355333369771345210432290816" - }, - { - "id": "1b16fdddd4602da46674b3bd34cacb75d5cc4719bc6e4014acb6d54b33b79dd7", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "cceaa3c520cbb7c5fe0d62e844de582fb9d8b217b035f74d78d7baeaa8330bf7b9c6521a33ba", - "value": "1036478171156637642563551232" - }, - { - "id": "d9a7a357495126b9a65539f1cc7d6ec16b5ff5ff3d6d5eaaa4f247c3b1882cf3", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "8089f9e4c9114bbd72311e99e9ee90daec45784955deeada2a6e44e5ba89d0f218c93aaea681", - "value": "1024049210006678884198662144" - }, - { - "id": "0e6340e4390ff56c8105b5487df12b69ecb3212d42f710f29212980477ec4f1b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "b0e83e56d02c38bb124c8e8f2fb7b3a674c1809537ee372ba7155d710c1dc7e77b4dfd94a911", - "value": "1293071543054818269281124352" - }, - { - "id": "b8457a9ad672e9b1416f40f0b0e727926edef989d102232e63775593a332683b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "1205b6812400d9e92dbe509a62915b71329f08096e44a0543f0111bf5f4a8538fba5f26cfc8c", - "value": "1029173255091547976105590784" - }, - { - "id": "db3d30605713833ad292b010bfd2b354a66ea1ff0bb5092c9a0048e60273f1f7", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2425257832252095260058976256" - }, - { - "id": "c8479e2f378f1ec1e8b704757ffe226521e2a2e2ebe34965660405084ede0078", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3617369922144810797467959296" - }, - { - "id": "690700859b1ae01cc7d82eb95377a58f5a1684fc494ff14895b09cccb687acfd", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "7f8da0a299216115fa06ea73cc88cced4015ffd900c830f65dee34afe6ad92936275c6b7ab6e", - "value": "1033160904009990725537890304" - }, - { - "id": "49e8ef36c442c1bf7cf324390b9a06124969362d7f1555619bd6d196dbe4246e", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "ffcd9e8cda80f5be1542c056e687de0db24c890d76223d32e7088933a5565174e8ce6b7d9b46", - "value": "1116525743403384208888692736" - }, - { - "id": "9ab1c6c9b4d6b1430c76d64ac3da922bb6c9814f6101514d4957247d67681aba", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "5cff9c5d6458efefa736a52423ecf4bbeb1f68cb26eb22e4cbb691d13db1e5c7e72ad306b5ae", - "value": "1917838746716651279127412736" - }, - { - "id": "61012a441faae8e37148974e617b7126237ae451c681154d37d3878b1a2b5435", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed", - "value": "1098031315041260647468761088" - }, - { - "id": "fb43f33692f37fe501b2fd90ab8840e0b9b597803c09d8fae3a9046d0f58fcc6", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1286469409019987384101502976" - }, - { - "id": "3a5e74ce30d351beec08c1028814b44cddac9b3bf80881d64205d68b799d47b0", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "5f33f85f7f5c48fbc683721f96ccef67a7e73a8b0114ee88431d14a6695e9eef317b1c2bfc83", - "value": "1000061597571348605781540864" - }, - { - "id": "74a14eeb0a9f770c1acbfce01490f1b8d9b5d4f113baa07be82bd553d8972be5", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "f5bf617d29675a90a87d777ef04b2041b0d48200daa17f7582c5aee407c07e6338d27a77b10e", - "value": "1021783772760413842580832256" - }, - { - "id": "486d05033713f80b32867618ed06a29f1447d5b904e671df3692a7949daf3a73", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "09bb5c2e45323c0e754c20722fa546b54d2fb7b66085af1ee1ad4272112d75aac862f40535e1", - "value": "1221836259168042937121505280" - }, - { - "id": "422790967325bc0143de3457255e3262fc7bc63697583e129bf15137f127ee5a", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "78c05e2f0044548d819447cc526b8cb4c06a8bc9fd760061836f67fed30a71826ee42080adea", - "value": "1039917787817745226314809344" - }, - { - "id": "a85c532a5fde4ba6cba706e0b6de487ab9967809bb50fb18ad3bc647266a409c", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "1badfc8ce27f63f51fbbb706dec5d583c859d575b6328da3b8055ca1c036fc4b6207b820192d", - "value": "1164108992282494355476840448" - }, - { - "id": "65d3f4ddd3e297a2c7f1fa85b47ccd46ad354d06bda88a5342eeedbec74da931", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "81cacbd5db9e75d571113cbe06a3f528bc0c74f70a42a11a9a7c8c4ee97f1dbc434624a541e7", - "value": "1191309036065440029382017024" - }, - { - "id": "bb5239e0e660536fc34f750c90ecfbc8a349917921adb8ed5f1348abe9a56a9d", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "7a478c4ab546a9a9d8a853057666a4b467aaf9a3901ccfe9483e33bb1b227bc9856dbb8cf096", - "value": "1071971606891981444033789952" - }, - { - "id": "791a174b0dfe297516cfc38486e80c584971c7286138f3631904083cfb3875a7", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "e04e874143aab29fd3c7fdf4a3af1667d9b6ede184352943972cfd325c4caaee3d8554f900db", - "value": "1118175122431054285420494848" - }, - { - "id": "101de3eb81e9026c22d072fea80b9b76d1c4faf548347726d54cffff2e75772e", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "1769853972144696986890665984" - }, - { - "id": "7ad41ba82769f9c706b8d329350419d6c4b8caecfbe9b5239562e77fc0f34dca", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1028028091023174566441648128" - }, - { - "id": "eacb68496ccea80f30e8bed7f17289485027cb787bed16508baed22e8c9d187b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "6d6dfdca8fc4e3d874511c7ca24a24b2cf6ce25796b691b5c710dba0261bb21fc4996b409acd", - "value": "1146423028587234015914229760" - }, - { - "id": "9a043d98a3e4dc0b4ce0c1cce9aca772f5f8f48dd955184902409d951f646658", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "213381e3682494aba1a8284d884f9452781057aff5406e7ce82c65b6fbe974822dd0bb2bcd44", - "value": "1057690240430713980116271104" - }, - { - "id": "7bf669ca50547e6f98b9a782bcd95ae21a2dd4ecc74df8236cc8c1a3c49c85fe", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "fd8e5362e3b79f3a34776628530abb4ad6ab91af831b949c5a848259350aa677bd710627cf83", - "value": "1004798706672485772963872768" - }, - { - "id": "f5865a7d2d51b12061c16037e761646e94a50141ec6540c05b27a12714060989", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "9a0a22661a9350b65d88586c0a871e0026569d21baf8c5bea8628d2373e334a9e5c963feb720", - "value": "1207603454811790710874701824" - }, - { - "id": "44387842ed040a7fba96048035eb1e5f4509887f489a17658da185028bfbdf9a", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "c1eb367f0ab94dae5f170cf7ce88b89bdb0113322fe45f06d04785a0bc694bee6ea7ec291ed7", - "value": "1031841197655644553470672896" - }, - { - "id": "6f7d2781a1559b2900787d8c10a542aedb23c23d0a026021e8e1cce27fddf361", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "a6ca5af365e3b9de7593a8640ca2c45e4fd9337a71820c1d483090bddf190c5575f3a5a16797", - "value": "1090720230233147463826767872" - }, - { - "id": "93375ba2886717af2c7431dc7fcc052d76628b0485492c01fda80c47923f7eaa", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "a108367888ea98db0a7241d2dbfa9e0b2379983f9fbf8fc3b5fa54703e5921cc840b4a3902b0", - "value": "1181057332467665000063565824" - }, - { - "id": "2569f8ade0a302ba6f49b41adce0b2957bb6455d6873145dc5c1a397fd3cba75", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2622800473002038421098594304" - }, - { - "id": "352b18e41b423e8b36e3d2d2daf827554ab1771aff5d3bf64bba319dd549b79b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "c9833b7d71706a525b0fcd3fb670f8f948179c41405bffb1422c14812228b24dbfd8f2cd09cc", - "value": "1012188529572128089116246016" - }, - { - "id": "02aa7dbf61aab50cf47790f2ce1745bde2708e952a1eb1e74980edbfc19ba322", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "c068407db6772e6f1d42e68ccb4f70832efd0d015f11afe1e8833dfe4d5bbf1d8b243c5af56b", - "value": "1073757300431476341335392256" - }, - { - "id": "1b6669b272c389e1727b439756cb3403473d1f3cc99e5fdb610a3ffe55e4e870", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "b9147be6caaa55b90a6980440ed497cf53d46bc2a608b634e0d867e16671e3150aed14259202", - "value": "1294271990984335242928062464" - }, - { - "id": "9326c2254263ee2adadf0dc04bc1d3fd222ee31cae48aeda133f24add7bb345b", - "fundtype": "siacoin output", - "maturityheight": 218217, - "walletaddress": false, - "relatedaddress": "57c7c816f85a909c00040eea8eea11cda7ae4de3b3c78fb4f389d8df04afd2d00fa663fafde5", - "value": "1172325685369684036909268992" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 218361, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - } - ], - "unconfirmedtransactions": [ - { - "transaction": { - "siacoininputs": [ - { - "parentid": "45f6a7e40ec51586d4b42b8edf8ea927337a7d1e2d9a55065930bff99c82ea9f", - "unlockconditions": { - "timelock": 0, - "publickeys": [ - { - "algorithm": "ed25519", - "key": "YuMV7xUgdBLAXQJz1xhWj5hV4zm+ZaJi5LpI99OhZBE=" - } - ], - "signaturesrequired": 1 - } - } - ], - "siacoinoutputs": [ - { - "value": "1843042713650305793536294912", - "unlockhash": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee" - }, - { - "value": "9423187638450601131792924672", - "unlockhash": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd" - }, - { - "value": "1260368111370076689234132992", - "unlockhash": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3" - }, - { - "value": "1004119144247185547527716864", - "unlockhash": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216" - }, - { - "value": "1502315757342905452054183936", - "unlockhash": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e" - }, - { - "value": "1018276823293666833585143808", - "unlockhash": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc" - }, - { - "value": "1892794663504718517961228288", - "unlockhash": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c" - }, - { - "value": "1113866039513719408422944768", - "unlockhash": "1c3763487727ab85816e8d28c70f6a8d3419bc66ab13026e36a0c69bd23151297c9e70cb039e" - }, - { - "value": "1476701666675078939300331520", - "unlockhash": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d" - }, - { - "value": "1794130886044772010616160256", - "unlockhash": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007" - }, - { - "value": "1011741466222374615324164096", - "unlockhash": "68b00df8351da22bb284f14fd81be0472a173bb23547050c32fc95e19ccf3c27335c15a980c0" - }, - { - "value": "1379948653447548598362308608", - "unlockhash": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f" - }, - { - "value": "2625513540423773644052758528", - "unlockhash": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b" - }, - { - "value": "3847882443662672214146154496", - "unlockhash": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3" - }, - { - "value": "1038163750426916391557496832", - "unlockhash": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d" - }, - { - "value": "1019843369195928901533302784", - "unlockhash": "96926828517600ca354b65ddac8673d32f11edd68dd986a2618d93447f3319c6ed7886f89f5c" - }, - { - "value": "1070740317604988086728720384", - "unlockhash": "f351559bf8a2ee60ebaa8d5ee57c3685cc2ed2afdc2381834e9c7ccc6b35e6a0f4cbc1895e85" - }, - { - "value": "1088781783152458181673746432", - "unlockhash": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264" - }, - { - "value": "1159732451118598689408417792", - "unlockhash": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed" - }, - { - "value": "1312771537390987998069260288", - "unlockhash": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949" - }, - { - "value": "1033468921994613542400917504", - "unlockhash": "15ff99a30f9ef503790c48cfb19e6d19b23d5ade35551c02ed1b2ed1f755f99bd46ccaa5770c" - }, - { - "value": "1106259621598274661001461760", - "unlockhash": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5" - }, - { - "value": "1821501612782631314998165504", - "unlockhash": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16" - }, - { - "value": "1058391954993654832608313344", - "unlockhash": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53" - }, - { - "value": "1009623961522261888948502528", - "unlockhash": "ee88608c2517dc7c1ee05e64ebad04c5006c0d84f4a1d34d024964898fb4b5e9ee2fa1f42f5a" - }, - { - "value": "1090562578982876335990374400", - "unlockhash": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a" - }, - { - "value": "1033875705831944677075566592", - "unlockhash": "79fc331ec3280f8a00de80df321925a4171cae41cd1d2ab84253440f3fea6d992457cc559fa2" - }, - { - "value": "1004650134290986774775595008", - "unlockhash": "70fab0cdefc7096ddbac8d8ee3ef7b316b59762345b93a88d48bfad5a4de1b7afabb6a4e2761" - }, - { - "value": "1340318537858902953945989120", - "unlockhash": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b" - }, - { - "value": "1039607978340278928258367488", - "unlockhash": "ffdaf3f34c00256e7fe6e2bad3df52e215b55a44a229e383c099d3dfd84e841434bf65d86e4b" - }, - { - "value": "1037956232585116672234209280", - "unlockhash": "56727bc9cce43f363ae38dda6935b3632da5760157e63199856a0362fa4b414ab28b94b284a9" - }, - { - "value": "1020599370123253179077361664", - "unlockhash": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b" - }, - { - "value": "1125721929509167072793067520", - "unlockhash": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd" - }, - { - "value": "1004065962473827813430788096", - "unlockhash": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b" - }, - { - "value": "2693168826986054715699101696", - "unlockhash": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5" - }, - { - "value": "1047496524747097565679321088", - "unlockhash": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3" - }, - { - "value": "1025289854739419887916023808", - "unlockhash": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234" - }, - { - "value": "1597255310491905674106109952", - "unlockhash": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944" - }, - { - "value": "1047267993051088044574638080", - "unlockhash": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef" - }, - { - "value": "40485489007691934635346886656", - "unlockhash": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38" - }, - { - "value": "1043117301289991705728516096", - "unlockhash": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd" - }, - { - "value": "3871211364225435237045239808", - "unlockhash": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d" - }, - { - "value": "1207887125594739639898079232", - "unlockhash": "3cfd4b7fab7c106a758a26fa01346a6b020a617bd9f0c6e4a83d2b6a601a35bb5ce254325990" - }, - { - "value": "38767885898433860665499189248", - "unlockhash": "eeee8c05d9a8e231820a2f15be451d1a8f8fda2a607c95198c97060fa4473506c13f4b99cd57" - }, - { - "value": "1038947863731045327997894656", - "unlockhash": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0" - }, - { - "value": "1055986125965145951265947648", - "unlockhash": "84176df748d0a2a4e07c026fcc26390aff7f08555de325f762df550d1aa32dc00c6a7d7ea85b" - }, - { - "value": "3124837963197216369378590720", - "unlockhash": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e" - }, - { - "value": "1012931384001816392385036288", - "unlockhash": "b92d7e851adc05f0944fb74086ed8f4a2b10c44dbcb8578c608ddba4b550045d4a5b46103c53" - }, - { - "value": "1081711621979590486456270848", - "unlockhash": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf" - }, - { - "value": "4045541986989967605982298112", - "unlockhash": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a" - } - ], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": ["240000000000000000000000"], - "arbitrarydata": [], - "transactionsignatures": [ - { - "parentid": "45f6a7e40ec51586d4b42b8edf8ea927337a7d1e2d9a55065930bff99c82ea9f", - "publickeyindex": 0, - "timelock": 0, - "coveredfields": { - "wholetransaction": true, - "siacoininputs": [], - "siacoinoutputs": [], - "filecontracts": [], - "filecontractrevisions": [], - "storageproofs": [], - "siafundinputs": [], - "siafundoutputs": [], - "minerfees": [], - "arbitrarydata": [], - "transactionsignatures": [] - }, - "signature": "GEsDMJqy3B0oIu2QLH1ytzInK4NapXINibC5an+P29rsQLHAJS6mxyobdKIZD9tnf6S69da+gvGMTiaqnhZMBA==" - } - ] - }, - "transactionid": "78cfc5002e149fe2e65c9f89eff1901cdc7878873b71ff04a6657cec9ad1a43d", - "confirmationheight": 18446744073709551615, - "confirmationtimestamp": 18446744073709551615, - "inputs": [ - { - "parentid": "45f6a7e40ec51586d4b42b8edf8ea927337a7d1e2d9a55065930bff99c82ea9f", - "fundtype": "siacoin input", - "walletaddress": false, - "relatedaddress": "0849307a13950b0c3f623469e578039d8d747722e481935b6cdd7fe2e3320527b3e93d32f690", - "value": "157756793412743378197385216000" - } - ], - "outputs": [ - { - "id": "10cbde129157e96d298c34304e3aa7c114b62be4ba73cc9718fcb87ac0e9475d", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "a25d9f6fcbb65e338b6fd8f91a9790c2728f3d996634c0ac246a5f1510f586fe62dee4e412ee", - "value": "1843042713650305793536294912" - }, - { - "id": "4430c938d339aa4c6ee5df88e2425e5f2c5ff27c2b53d73a7df8cc9b4ffa306b", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "27a5381e82068adb6d08a9813bf63c1f0d61a5e88a1c0ef2834bcd72bd2868e7c9b56c2d96cd", - "value": "9423187638450601131792924672" - }, - { - "id": "3901b818094e42679b0441a0d864112c59d8ee11191661b2f6e7a6919464a298", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "c92ef1112acb69b16c64a250776cbd7963476a2f5e6e91d47cf37e2f8390c29c4c400d904ef3", - "value": "1260368111370076689234132992" - }, - { - "id": "bc704bff212efb54785dba7d936b03ba8ac6a0e438c4249d1bc6dc7628ac08d4", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "3e3cb69cf0920e8e94d5648fa9d0398b7de9c9f69ed62f09c925897d77af9feafeecad92a216", - "value": "1004119144247185547527716864" - }, - { - "id": "061ee6234e14e09f5681d551da088cbac4af954a70ce4b776944c4293d4800c8", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "8fccf84a9254c954ec5dab9827a88cb40cf8eaec63af6bfbabccc980bbd8017f6bc4f1077b6e", - "value": "1502315757342905452054183936" - }, - { - "id": "049f3597d29f76c0eb5112e94dd63038f42ba6ad3bfc51914cd7fd16af62883c", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "ec0e40c797897cb6a0ffe2c243af444d56304f5c90955052d2d9e90201b4cdf3cf3508f3cfdc", - "value": "1018276823293666833585143808" - }, - { - "id": "86f29a5cf4d228cb853e351412658b0839fde0d13089d6dae2be934b6dd825fb", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "37fa4c23daebd9c2412b59f27f30e6c9ecbec143f5a549dbe8e0d56502746cf41e302d3af25c", - "value": "1892794663504718517961228288" - }, - { - "id": "dc4302e32a55cf2617f6a41eb91f9f3551d55f8f697422d90158d353f46cbe2c", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "1c3763487727ab85816e8d28c70f6a8d3419bc66ab13026e36a0c69bd23151297c9e70cb039e", - "value": "1113866039513719408422944768" - }, - { - "id": "12c87483c20235521cc00d3e5431df95423aac2061250b91c6e7a29fc4449b91", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "d341b60c6581567958c38e8715317704b37a0ee4cfdbfe3b7a7d0ac8714a09af527c2ea8f45d", - "value": "1476701666675078939300331520" - }, - { - "id": "4599b8ab73b739592580837fb29af5184aebe01143a80528f6ddc0e694a5bd7c", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "2729acb3d62710dfbdf3db410f7382a9e8771f2d016b2c3a8ac701a06f2e7835a6848781d007", - "value": "1794130886044772010616160256" - }, - { - "id": "29d7675e7959e91fbf03be22d596b6babf6d936980ff4de74aa5ae7f33b6dda0", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "68b00df8351da22bb284f14fd81be0472a173bb23547050c32fc95e19ccf3c27335c15a980c0", - "value": "1011741466222374615324164096" - }, - { - "id": "762bf612065722c006726f4785b57065fbf2c27efe6096173fc90e7c3b3d23f1", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "57105b145300a17f873635edd09a12175b1a65526bc481786fa02dbeeb9264499a922bab832f", - "value": "1379948653447548598362308608" - }, - { - "id": "18cfb0b07d7e12b6c170910d97ffa1c40b31f1a80df118ee160788636680f080", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": true, - "relatedaddress": "679aa6ffc1e270d27ed7e3dc0fcfcaf6013f97f96d8019042fdc3187d3666d7d7973d2d4b21b", - "value": "2625513540423773644052758528" - }, - { - "id": "9a36765b5f071b49101c2118b47941a56a0c5e8c8fd910cd80a1bc986f06f091", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "4876022509307a0b97553b94912aaed20f7f8597f75cccf2eb382f0b6731969aa8c89fb2bfe3", - "value": "3847882443662672214146154496" - }, - { - "id": "015e7fc6fd7df17acf0aee04beb8ea27c45d5b2a6e7586c10dbe288d2b9e315d", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "1d518b412430a396851c7a0720b0218e1b10569b05fce396e2bf047c4906bd5eccc65fe7028d", - "value": "1038163750426916391557496832" - }, - { - "id": "95d6d8e1be79e69d41eaf681f3de3490fa440ee2bc16f75876ff4ea65215550f", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "96926828517600ca354b65ddac8673d32f11edd68dd986a2618d93447f3319c6ed7886f89f5c", - "value": "1019843369195928901533302784" - }, - { - "id": "38b50d80bd986b84e2f98662ebbfbefe6bab5091b5c9ae178d56cdedd74085c2", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "f351559bf8a2ee60ebaa8d5ee57c3685cc2ed2afdc2381834e9c7ccc6b35e6a0f4cbc1895e85", - "value": "1070740317604988086728720384" - }, - { - "id": "91882e82a65c9ced125396e4f0cabc0ccc1a20926639383c998a69181a528d1a", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "45284fed156d0ca7746b99eb2b3f646e71bb0f2ef3f8db41d0e5d8c9a2f20a8ce497f3b9a264", - "value": "1088781783152458181673746432" - }, - { - "id": "0db3dafe045cef852455ef7a96986e2d2eaeb6ef72c01e5d1ae5fff2493473fb", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "95ccae85e806526577893c42619e87495a8ca9097f7d980a559c0c295955b81c9a464770cfed", - "value": "1159732451118598689408417792" - }, - { - "id": "7e718c63151a26c851f81b4f14bcc857baafe75d566e23b3a71f57cd4fc884c6", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "3a0b8c823e62f19e331a1858caee6426c766ce0a5c6bef15dbacbb8a497d433358ccc243d949", - "value": "1312771537390987998069260288" - }, - { - "id": "028e71f2aed0d166b4f193169ff92a64c30936c139f23c1bbbb4dcd965dc3118", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "15ff99a30f9ef503790c48cfb19e6d19b23d5ade35551c02ed1b2ed1f755f99bd46ccaa5770c", - "value": "1033468921994613542400917504" - }, - { - "id": "a927e22aca385506a6e2c1145a3bcca392bd6757f47b649163d78b175bfd2307", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "aff4e8f947444eeccbb78b36fd376820b020d47a03dde71ddc1e280f13979834eb7ab9184ed5", - "value": "1106259621598274661001461760" - }, - { - "id": "c22cb50f30742830e97be80a4910c4a1fa53bc535889d85bb18f32204d0687bc", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "46bb927e20684f7b978e2aef4a8217d284edf49208a75b491be2a984a0195f8145a93a606a16", - "value": "1821501612782631314998165504" - }, - { - "id": "1efdd7d6b5de1617e7d93c50f969a388b8cf8f4496806e199f36ea480e6b5a33", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "6272a4173fc96c591cdbf3e8eb189bc5dc4aaf41048d7eb5643b2321784bba1aa10916292d53", - "value": "1058391954993654832608313344" - }, - { - "id": "5189814b24b6920874ae995fb6c452458735131e5446f2c89838d67bc7a3b228", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "ee88608c2517dc7c1ee05e64ebad04c5006c0d84f4a1d34d024964898fb4b5e9ee2fa1f42f5a", - "value": "1009623961522261888948502528" - }, - { - "id": "a0affbac6cc6e95574817725c8b7aac8f93d60ebbaeb7e5b2c98bf77e236987c", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "d9840f1aa0956bff61063fa7ab12862dca7d2fae333c1dc48ad9afbf03729f4b4c3a4b7b027a", - "value": "1090562578982876335990374400" - }, - { - "id": "564de3beca99a49681b8f6b91aa185844287bc5c6bd6534bd483834f48f1d22a", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "79fc331ec3280f8a00de80df321925a4171cae41cd1d2ab84253440f3fea6d992457cc559fa2", - "value": "1033875705831944677075566592" - }, - { - "id": "be05bb8cbee9496cf5a111d912b5dff257441033855b6da866598259302ba3a9", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "70fab0cdefc7096ddbac8d8ee3ef7b316b59762345b93a88d48bfad5a4de1b7afabb6a4e2761", - "value": "1004650134290986774775595008" - }, - { - "id": "fcc10b2a8ba4ebecf8d16d90af555bcc9e96de34b3983862d38a4e16cd01518a", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "c395cb9870c4d3143384cacf3f812d1d854c8c6486525b90e85df5decb1abd65ead9b69a050b", - "value": "1340318537858902953945989120" - }, - { - "id": "81d031c6093f5ccbd8e221c8d6c8477fdf08914851a6884bbc922d68c0f9f074", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "ffdaf3f34c00256e7fe6e2bad3df52e215b55a44a229e383c099d3dfd84e841434bf65d86e4b", - "value": "1039607978340278928258367488" - }, - { - "id": "f18284dc1be2ff91cbd74a8f3a76cde86e5cbdba5c52ba7bfa6ab788eaf880c8", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "56727bc9cce43f363ae38dda6935b3632da5760157e63199856a0362fa4b414ab28b94b284a9", - "value": "1037956232585116672234209280" - }, - { - "id": "e56849a97c88f7204f0c819479f0cc3618021f910a658ee83a1c0bdbf2d146cc", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "84df93633b6a3f413f02d2eb7efc7129f8382023f8c4f21c2718aed52f26d67e02061900667b", - "value": "1020599370123253179077361664" - }, - { - "id": "067e2da035d5c656ccc043fdd9a1c49fe9d72d2876762d495a19d296e7108bcf", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "07dc9df73db274899d6475c9637baa4f899654c02c637f8c47f59134e10efa518212af9522bd", - "value": "1125721929509167072793067520" - }, - { - "id": "55627921e47fa86b76103eeb56b95d5f913911111aec82acf30f6dd50ca11813", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "04f331128f687f30a7c71765cb1a18e668d69d4d6ccdf260418a650e2e1ecab89553e5afb37b", - "value": "1004065962473827813430788096" - }, - { - "id": "1cf74ce67698c4d1c5522de426b89ec011862d859f6c4f73f2b014ed0169c6d3", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "1ad330e9c9f34cda350b4807eb2a63c798217cad8fc29ac232ce754f7a487f71f691c7b829d5", - "value": "2693168826986054715699101696" - }, - { - "id": "ed6c58920105077daf29b995532aff6dc49a02a6fc01932352724897aefa3287", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "138cc48beb84c5636a0bc2b25061bafc710dc5b03a915c9c33158e6bb69e23dda7535e0c32a3", - "value": "1047496524747097565679321088" - }, - { - "id": "8948205620758650d59c315d4f69d3127550aa69b95103e19d69da469d678bc7", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "bff06cb20e0972f4a97c4b04dd94fb587309794a2d78390c42dc5b7d92242b52392527843234", - "value": "1025289854739419887916023808" - }, - { - "id": "1a7ba9a8803393616263d51cb50aba892ae1871daff00593f9c36868859f9e26", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "440d74c09975a51bd6e56b07555e93e97b4352017bd610b431103296fcbf53b4915f90404944", - "value": "1597255310491905674106109952" - }, - { - "id": "bdb61ade40971eb1b68959d1719856373202dd965e0c377a256624cb8e4f75a3", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "f275fc36898714084edff9878de64fb79d1e948b31069f6541cd463417db6f7e998f6499f7ef", - "value": "1047267993051088044574638080" - }, - { - "id": "700dd2daa032d041646fdf33996a0524250fdc1f8a81da5d15a9f63409e9aaf0", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "f85416f60d7f9504eb05a277f37a1b7e68dea05dfda77bf1b6e365bb47803a0c1251dbd39d38", - "value": "40485489007691934635346886656" - }, - { - "id": "f9024f4b21b5a1f3dbc78ec2976732c2b38703dc218ee243f5d225158baad4cc", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "67d16736f692ae058e377cd55823af3b9ca822856be17b8098f7be34242ffc10dfce69fe80fd", - "value": "1043117301289991705728516096" - }, - { - "id": "4a1f96c069b99d5f718daef5a3df2572fa233d965eb38e810bad30d7ca58aabd", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "c07e331ff9c55093964525f1d089d4562c38cee40debe677199a9d0498c22a0730b4f915f90d", - "value": "3871211364225435237045239808" - }, - { - "id": "b8fd875dadfc8a258ef3a19a83e12fa3caeb5dc84e691ed83367ea84bd00942d", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "3cfd4b7fab7c106a758a26fa01346a6b020a617bd9f0c6e4a83d2b6a601a35bb5ce254325990", - "value": "1207887125594739639898079232" - }, - { - "id": "a89b1dcc882714b0d34b6539395751a4af8538aade6092aec797e04a1048f8a0", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "eeee8c05d9a8e231820a2f15be451d1a8f8fda2a607c95198c97060fa4473506c13f4b99cd57", - "value": "38767885898433860665499189248" - }, - { - "id": "6257bad08158026262a1c10f90115af53e42dfc8dc2e663b7724202014b05062", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "e1cb3095fb372946cdfa107a5c18dce5fa59ba8b57a91045da0469c867647fee6dfd6c080de0", - "value": "1038947863731045327997894656" - }, - { - "id": "fd45e842eb23be5f36f9a10894cbe7fee42aa28f8a8199ab64443430ba4e6ddf", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "84176df748d0a2a4e07c026fcc26390aff7f08555de325f762df550d1aa32dc00c6a7d7ea85b", - "value": "1055986125965145951265947648" - }, - { - "id": "68f1c1c99af4d2a4cacec71514c3482b8d784b382bdbfc080ca3562a7acc36fa", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "a61d1a4a2dfb844366cced825acde80d99db40edf7f45d53ee2dec342adf64eb1a3e47aee14e", - "value": "3124837963197216369378590720" - }, - { - "id": "e5d1affaa1992cf5774400a54637f3dfbbdcd4d56a3fb954fd8c63a98c6d8bc5", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "b92d7e851adc05f0944fb74086ed8f4a2b10c44dbcb8578c608ddba4b550045d4a5b46103c53", - "value": "1012931384001816392385036288" - }, - { - "id": "4bbcedf9461f505029ea415a0be21d9972c7191f4afdc1d900df54d39ddf0a0a", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "4d79d1227b15caa54baacf76fb639ca259799232984dfe31cb49313ab6681608f835298ddeaf", - "value": "1081711621979590486456270848" - }, - { - "id": "87d2ce43b53282bf9ab9306b3540d7e18b185d3ff26d67f828d6a5c0566c27ba", - "fundtype": "siacoin output", - "maturityheight": 18446744073709551615, - "walletaddress": false, - "relatedaddress": "a152ee47ef01407055494ed24b4af3f1caa73a463550e5ce78e3420a661dbe5887af1242c18a", - "value": "4045541986989967605982298112" - }, - { - "id": "0000000000000000000000000000000000000000000000000000000000000000", - "fundtype": "miner fee", - "maturityheight": 0, - "walletaddress": false, - "relatedaddress": "000000000000000000000000000000000000000000000000000000000000000089eb0d6a8a69", - "value": "240000000000000000000000" - } - ] - } - ] -} diff --git a/libs/sia-js/src/types/block.ts b/libs/sia-js/src/types/block.ts deleted file mode 100644 index 138213a2a..000000000 --- a/libs/sia-js/src/types/block.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { Timestamp } from './timestamp' -import { SiacoinOutput, Transaction } from './transactions' -import { CryptoHash, SiaByteArray, SiaUint64 } from './types' - -// A Block is a summary of changes to the state that have occurred since the -// previous block. Blocks reference the ID of the previous block (their -// "parent"), creating the linked-list commonly known as the blockchain. Their -// primary function is to bundle together transactions on the network. Blocks -// are created by "miners," who collect transactions from other nodes, and -// then try to pick a Nonce that results in a block whose BlockID is below a -// given Target. -export type Block = { - parentid: BlockID - nonce: BlockNonce - timestamp: Timestamp - minerpayouts: SiacoinOutput[] - transactions: Transaction[] -} - -// A BlockHeader contains the data that, when hashed, produces the Block's ID. -export type BlockHeader = { - parentid: BlockID - nonce: BlockNonce - timestamp: Timestamp - merkleroot: CryptoHash -} - -// BlockHeight is the number of blocks that exist after the genesis block. -export type BlockHeight = SiaUint64 - -// A BlockID is the hash of a BlockHeader. A BlockID uniquely -// identifies a Block, and indicates the amount of work performed -// to mine that Block. The more leading zeros in the BlockID, the -// more work was performed. - -export type BlockID = CryptoHash - -// The BlockNonce is a "scratch space" that miners can freely alter to produce -// a BlockID that satisfies a given Target. -export type BlockNonce = SiaByteArray // [8]byte diff --git a/libs/sia-js/src/types/currency.ts b/libs/sia-js/src/types/currency.ts deleted file mode 100644 index ade93a5e1..000000000 --- a/libs/sia-js/src/types/currency.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { SiaBigInt } from './types' - -// A Currency represents a number of siacoins or siafunds. Internally, a -// Currency value is unbounded; however, Currency values sent over the wire -// protocol are subject to a maximum size of 255 bytes (approximately -// 10^614). Unlike the math/big library, whose methods modify their -// receiver, all arithmetic Currency methods return a new value. Currency -// cannot be negative. -export type Currency = SiaBigInt diff --git a/libs/sia-js/src/types/fileContracts.ts b/libs/sia-js/src/types/fileContracts.ts deleted file mode 100644 index 2043839fc..000000000 --- a/libs/sia-js/src/types/fileContracts.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { BlockHeight } from './block' -import { Currency } from './currency' -import { UnlockConditions } from './signatures' -import { FileContractID, SiacoinOutput, UnlockHash } from './transactions' -import { CryptoHash, SiaByteArray, SiaUint64 } from './types' - -// A FileContract is a public record of a storage agreement between a "host" -// and a "renter." It mandates that a host must submit a storage proof to the -// network, proving that they still possess the file they have agreed to -// store. -// -// The party must submit the storage proof in a block that is between -// 'WindowStart' and 'WindowEnd'. Upon submitting the proof, the outputs -// for 'ValidProofOutputs' are created. If the party does not submit a -// storage proof by 'WindowEnd', then the outputs for 'MissedProofOutputs' -// are created instead. The sum of 'MissedProofOutputs' and the sum of -// 'ValidProofOutputs' must equal 'Payout' minus the siafund fee. This fee -// is sent to the siafund pool, which is a set of siacoins only spendable -// by siafund owners. -// -// Under normal circumstances, the payout will be funded by both the host and -// the renter, which gives the host incentive not to lose the file. The -// 'ValidProofUnlockHash' will typically be spendable by host, and the -// 'MissedProofUnlockHash' will either by spendable by the renter or by -// nobody (the ZeroUnlockHash). -// -// A contract can be terminated early by submitting a FileContractTermination -// whose UnlockConditions hash to 'TerminationHash'. -export type FileContract = { - filesize: SiaUint64 - filemerkleroot: CryptoHash - windowstart: BlockHeight - windowend: BlockHeight - payout: Currency - validproofoutputs: SiacoinOutput[] - missedproofoutputs: SiacoinOutput[] - unlockhash: UnlockHash - revisionnumber: SiaUint64 -} - -// A FileContractRevision revises an existing file contract. The ParentID -// points to the file contract that is being revised. The UnlockConditions -// are the conditions under which the revision is valid, and must match the -// UnlockHash of the parent file contract. The Payout of the file contract -// cannot be changed, but all other fields are allowed to be changed. The -// sum of the outputs must match the original payout (taking into account -// the fee for the proof payouts.) A revision number is included. When -// getting accepted, the revision number of the revision must be higher -// than any previously seen revision number for that file contract. -// -// FileContractRevisions enable trust-free modifications to existing file -// contracts. -export type FileContractRevision = { - parentid: FileContractID - unlockconditions: UnlockConditions - newrevisionnumber: SiaUint64 - - newfilesize: SiaUint64 - newfilemerkleroot: CryptoHash - newwindowstart: BlockHeight - newwindowend: BlockHeight - newvalidproofoutputs: SiacoinOutput[] - newmissedproofoutputs: SiacoinOutput[] - newunlockhash: UnlockHash -} - -// A StorageProof fulfills a FileContract. The proof contains a specific -// segment of the file, along with a set of hashes from the file's Merkle -// tree. In combination, these can be used to prove that the segment came -// from the file. To prevent abuse, the segment must be chosen randomly, so -// the ID of block 'WindowStart' - 1 is used as a seed value; see -// StorageProofSegment for the exact implementation. -// -// A transaction with a StorageProof cannot have any SiacoinOutputs, -// SiafundOutputs, or FileContracts. This is because a mundane reorg can -// invalidate the proof, and with it the rest of the transaction. -export type StorageProof = { - parentid: FileContractID - segment: SiaByteArray // [Crypto.SegmentSize]byte - hashset: CryptoHash -} - -// ProofStatus indicates whether a StorageProof was valid (true) or missed (false). -export type ProofStatus = boolean diff --git a/libs/sia-js/src/types/gen.ts b/libs/sia-js/src/types/gen.ts deleted file mode 100644 index 96b809856..000000000 --- a/libs/sia-js/src/types/gen.ts +++ /dev/null @@ -1,576 +0,0 @@ -/* eslint-disable */ -import { Currency } from './currency' -import { SiaPublicKey } from './signatures' -import { SiacoinOutput, Transaction } from './transactions' - -// helpers -const maxUnixTSInSeconds = 9999999999 - -function ParseDate(d: Date | number | string): Date { - if (d instanceof Date) return d - if (typeof d === 'number') { - if (d > maxUnixTSInSeconds) return new Date(d) - return new Date(d * 1000) // go ts - } - return new Date(d) -} - -function ParseNumber(v: number | string, isInt = false): number { - if (!v) return 0 - if (typeof v === 'number') return v - return (isInt ? parseInt(v) : parseFloat(v)) || 0 -} - -function FromArray( - Ctor: { new (v: any): T }, - data?: any[] | any, - def = null -): T[] | null { - if (!data || !Object.keys(data).length) return def - const d = Array.isArray(data) ? data : [data] - return d.map((v: any) => new Ctor(v)) -} - -function ToObject(o: any, typeOrCfg: any = {}, child = false): any { - if (o == null) return null - if (typeof o.toObject === 'function' && child) return o.toObject() - - switch (typeof o) { - case 'string': - return typeOrCfg === 'number' ? ParseNumber(o) : o - case 'boolean': - case 'number': - return o - } - - if (o instanceof Date) { - return typeOrCfg === 'string' - ? o.toISOString() - : Math.floor(o.getTime() / 1000) - } - - if (Array.isArray(o)) return o.map((v: any) => ToObject(v, typeOrCfg, true)) - - const d: any = {} - - for (const k of Object.keys(o)) { - const v: any = o[k] - if (v === undefined) continue - if (v === null) continue - d[k] = ToObject(v, typeOrCfg[k] || {}, true) - } - - return d -} - -// structs -// // struct2ts:go.sia.tech/siad/types.Currency -// export interface Currency { -// } - -// struct2ts:go.sia.tech/siad/modules.SiaPath -export interface SiaPath { - path: string -} - -// struct2ts:go.sia.tech/siad/modules.MountOptions -export interface MountOptions { - allowother: boolean - readonly: boolean -} - -// struct2ts:go.sia.tech/siad/modules.MountInfo -export interface MountInfo { - mountpoint: string - siapath: SiaPath - mountoptions: MountOptions -} - -// struct2ts:go.sia.tech/siad/node/api.RenterFuseInfo -export interface RenterFuseInfo { - mountpoints: MountInfo[] | null -} - -// struct2ts:go.sia.tech/siad/node/api.RenterUploadedBackup -export interface RenterUploadedBackup { - name: string - creationdate: number - size: number - uploadprogress: number -} - -// struct2ts:go.sia.tech/siad/node/api.RenterBackupsGET -export interface RenterBackupsGET { - backups: RenterUploadedBackup[] | null - syncedhosts: SiaPublicKey[] | null - unsyncedhosts: SiaPublicKey[] | null -} - -// // struct2ts:go.sia.tech/siad/modules.ValuedTransaction -// export interface ValuedTransaction { -// transaction: Transaction -// transactionid: number[] -// confirmationheight: number -// confirmationtimestamp: number -// inputs: ProcessedInput[] | null -// outputs: ProcessedOutput[] | null -// confirmedincomingvalue: Currency -// confirmedoutgoingvalue: Currency -// } - -// // struct2ts:go.sia.tech/siad/modules.ProcessedTransaction -// export interface ProcessedTransaction { -// transaction: Transaction -// transactionid: number[] -// confirmationheight: number -// confirmationtimestamp: number -// inputs: ProcessedInput[] | null -// outputs: ProcessedOutput[] | null -// } - -// struct2ts:math/big.Rat -export interface Rat {} - -// struct2ts:go.sia.tech/siad/node/api.ConsensusGET -export interface ConsensusGET { - synced: boolean - height: number - currentblock: number[] - target: number[] - difficulty: Currency - foundationprimaryunlockhash: number[] - foundationfailsafeunlockhash: number[] - blockfrequency: number - blocksizelimit: number - extremefuturethreshold: number - futurethreshold: number - genesistimestamp: number - maturitydelay: number - mediantimestampwindow: number - siafundcount: Currency - siafundportion: Rat | null - initialcoinbase: number - minimumcoinbase: number - roottarget: number[] - rootdepth: number[] - siacoinprecision: Currency -} - -// struct2ts:go.sia.tech/siad/modules.Peer -export interface Peer { - inbound: boolean - local: boolean - netaddress: string - version: string -} - -// struct2ts:go.sia.tech/siad/node/api.GatewayGET -export interface GatewayGET { - netaddress: string - peers: Peer[] | null - online: boolean - maxdownloadspeed: number - maxuploadspeed: number -} - -// struct2ts:go.sia.tech/siad/node/api.DaemonVersion -export interface DaemonVersion { - version: string - gitrevision: string - buildtime: string -} - -// struct2ts:go.sia.tech/siad/node/api.WalletGET -export interface WalletGET { - encrypted: boolean - height: number - rescanning: boolean - unlocked: boolean - confirmedsiacoinbalance: Currency - unconfirmedoutgoingsiacoins: Currency - unconfirmedincomingsiacoins: Currency - siacoinclaimbalance: Currency - siafundbalance: Currency - dustthreshold: Currency -} - -// struct2ts:go.sia.tech/siad/node/api.WalletInitPOST -export interface WalletInitPOST { - primaryseed: string -} - -// // struct2ts:go.sia.tech/siad/types.SiaPublicKey -// export interface SiaPublicKey { -// algorithm: number[] -// key: number[] | null -// } - -// // struct2ts:go.sia.tech/siad/types.UnlockConditions -// export interface UnlockConditions { -// timelock: number -// publickeys: SiaPublicKey[] | null -// signaturesrequired: number -// } - -// // struct2ts:go.sia.tech/siad/types.SiacoinInput -// export interface SiacoinInput { -// parentid: number[] -// unlockconditions: UnlockConditions -// } - -// // struct2ts:go.sia.tech/siad/types.SiacoinOutput -// export interface SiacoinOutput { -// value: Currency -// unlockhash: number[] -// } - -// // struct2ts:go.sia.tech/siad/types.FileContract -// export interface FileContract { -// filesize: number; -// filemerkleroot: number[]; -// windowstart: number; -// windowend: number; -// payout: Currency; -// validproofoutputs: SiacoinOutput[] | null; -// missedproofoutputs: SiacoinOutput[] | null; -// unlockhash: number[]; -// revisionnumber: number; -// } - -// // struct2ts:go.sia.tech/siad/types.FileContractRevision -// export interface FileContractRevision { -// parentid: number[]; -// unlockconditions: UnlockConditions; -// newrevisionnumber: number; -// newfilesize: number; -// newfilemerkleroot: number[]; -// newwindowstart: number; -// newwindowend: number; -// newvalidproofoutputs: SiacoinOutput[] | null; -// newmissedproofoutputs: SiacoinOutput[] | null; -// newunlockhash: number[]; -// } - -// // struct2ts:go.sia.tech/siad/types.StorageProof -// export interface StorageProof { -// parentid: number[] -// segment: number[] -// hashset: Hash[] | null -// } - -// // struct2ts:go.sia.tech/siad/types.SiafundInput -// export interface SiafundInput { -// parentid: number[] -// unlockconditions: UnlockConditions -// claimunlockhash: number[] -// } - -// // struct2ts:go.sia.tech/siad/types.SiafundOutput -// export interface SiafundOutput { -// value: Currency -// unlockhash: number[] -// claimstart: Currency -// } - -// // struct2ts:go.sia.tech/siad/types.CoveredFields -// export interface CoveredFields { -// wholetransaction: boolean -// siacoininputs: number[] | null -// siacoinoutputs: number[] | null -// filecontracts: number[] | null -// filecontractrevisions: number[] | null -// storageproofs: number[] | null -// siafundinputs: number[] | null -// siafundoutputs: number[] | null -// minerfees: number[] | null -// arbitrarydata: number[] | null -// transactionsignatures: number[] | null -// } - -// // struct2ts:go.sia.tech/siad/types.TransactionSignature -// export interface TransactionSignature { -// parentid: number[] -// publickeyindex: number -// timelock: number -// coveredfields: CoveredFields -// signature: number[] | null -// } - -// // struct2ts:go.sia.tech/siad/types.Transaction -// export interface Transaction { -// siacoininputs: SiacoinInput[] | null; -// siacoinoutputs: SiacoinOutput[] | null; -// filecontracts: FileContract[] | null; -// filecontractrevisions: FileContractRevision[] | null; -// storageproofs: StorageProof[] | null; -// siafundinputs: SiafundInput[] | null; -// siafundoutputs: SiafundOutput[] | null; -// minerfees: Currency[] | null; -// arbitrarydata: []uint8[] | null; -// transactionsignatures: TransactionSignature[] | null; -// } - -// struct2ts:go.sia.tech/siad/modules.MaintenanceSpending -export interface MaintenanceSpending { - accountbalancecost: Currency - fundaccountcost: Currency - updatepricetablecost: Currency -} - -// struct2ts:go.sia.tech/siad/node/api.RenterContract -export interface RenterContract { - downloadspending: Currency - endheight: number - fees: Currency - fundaccountspending: Currency - hostpublickey: SiaPublicKey - hostversion: string - id: number[] - lasttransaction: Transaction - maintenancespending: MaintenanceSpending - netaddress: string - renterfunds: Currency - size: number - startheight: number - storagespending: Currency - StorageSpending: Currency - totalcost: Currency - uploadspending: Currency - goodforupload: boolean - goodforrenew: boolean - badcontract: boolean -} - -// struct2ts:go.sia.tech/siad/modules.RecoverableContract -export interface RecoverableContract { - filesize: number - filemerkleroot: number[] - windowstart: number - windowend: number - payout: Currency - validproofoutputs: SiacoinOutput[] | null - missedproofoutputs: SiacoinOutput[] | null - unlockhash: number[] - revisionnumber: number - id: number[] - hostpublickey: SiaPublicKey - inputparentid: number[] - startheight: number - txnfee: Currency -} - -// struct2ts:go.sia.tech/siad/node/api.RenterContracts -export interface RenterContracts { - contracts: RenterContract[] | null - inactivecontracts: RenterContract[] | null - activecontracts: RenterContract[] | null - passivecontracts: RenterContract[] | null - refreshedcontracts: RenterContract[] | null - disabledcontracts: RenterContract[] | null - expiredcontracts: RenterContract[] | null - expiredrefreshedcontracts: RenterContract[] | null - recoverablecontracts: RecoverableContract[] | null -} - -// struct2ts:go.sia.tech/siad/modules.Allowance -export interface Allowance { - funds: Currency - hosts: number - period: number - renewwindow: number - expectedstorage: number - expectedupload: number - expecteddownload: number - expectedredundancy: number - maxperiodchurn: number - maxrpcprice: Currency - maxcontractprice: Currency - maxdownloadbandwidthprice: Currency - maxsectoraccessprice: Currency - maxstorageprice: Currency - maxuploadbandwidthprice: Currency -} - -// struct2ts:go.sia.tech/siad/modules.UploadsStatus -export interface UploadsStatus { - paused: boolean - pauseendtime: Date -} - -// struct2ts:go.sia.tech/siad/modules.RenterSettings -export interface RenterSettings { - allowance: Allowance - ipviolationcheck: boolean - maxuploadspeed: number - maxdownloadspeed: number - uploadsstatus: UploadsStatus -} - -// struct2ts:go.sia.tech/siad/modules.ContractorSpending -export interface ContractorSpending { - contractfees: Currency - downloadspending: Currency - fundaccountspending: Currency - maintenancespending: MaintenanceSpending - storagespending: Currency - totalallocated: Currency - uploadspending: Currency - unspent: Currency - contractspending: Currency - withheldfunds: Currency - releaseblock: number - previousspending: Currency -} - -// struct2ts:go.sia.tech/siad/modules.MemoryManagerStatus -export interface MemoryManagerStatus { - available: number - base: number - requested: number - priorityavailable: number - prioritybase: number - priorityrequested: number - priorityreserve: number -} - -// struct2ts:go.sia.tech/siad/modules.MemoryStatus -export interface MemoryStatus { - available: number - base: number - requested: number - priorityavailable: number - prioritybase: number - priorityrequested: number - priorityreserve: number - registry: MemoryManagerStatus - userupload: MemoryManagerStatus - userdownload: MemoryManagerStatus - system: MemoryManagerStatus -} - -// struct2ts:go.sia.tech/siad/node/api.RenterGET -export interface RenterGET { - settings: RenterSettings - financialmetrics: ContractorSpending - currentperiod: number - nextperiod: number - memorystatus: MemoryStatus -} - -// struct2ts:go.sia.tech/siad/node/api.RenterRecoveryStatusGET -export interface RenterRecoveryStatusGET { - scaninprogress: boolean - scannedheight: number -} - -// struct2ts:go.sia.tech/siad/node/api.SiaConstants -export interface SiaConstants { - blockfrequency: number - blocksizelimit: number - extremefuturethreshold: number - futurethreshold: number - genesistimestamp: number - maturitydelay: number - mediantimestampwindow: number - siafundcount: Currency - siafundportion: Rat | null - targetwindow: number - initialcoinbase: number - minimumcoinbase: number - roottarget: number[] - rootdepth: number[] - defaultallowance: Allowance - maxadjustmentup: Rat | null - maxadjustmentdown: Rat | null - maxtargetadjustmentup: Rat | null - maxtargetadjustmentdown: Rat | null - siacoinprecision: Currency -} - -// struct2ts:go.sia.tech/siad/modules.SiaPath -export interface SiaPath { - path: string -} - -// struct2ts:go.sia.tech/siad/modules.FileInfo -export interface FileInfo { - accesstime: Date - available: boolean - changetime: Date - ciphertype: string - createtime: Date - expiration: number - filesize: number - health: number - localpath: string - maxhealth: number - maxhealthpercent: number - modtime: Date - mode: number - numstuckchunks: number - ondisk: boolean - recoverable: boolean - redundancy: number - renewing: boolean - repairbytes: number - skylinks: string[] | null - siapath: SiaPath - stuck: boolean - stuckbytes: number - stuckhealth: number - uid: number - uploadedbytes: number - uploadprogress: number -} - -// struct2ts:go.sia.tech/siad/node/api.RenterFiles -export interface RenterFiles { - files: FileInfo[] | null -} - -// struct2ts:go.sia.tech/siad/node/api.RenterFile -export interface RenterFile { - file: FileInfo -} - -// struct2ts:go.sia.tech/siad/modules.DirectoryInfo -export interface DirectoryInfo { - aggregatehealth: number - aggregatelasthealthchecktime: Date - aggregatemaxhealth: number - aggregatemaxhealthpercentage: number - aggregateminredundancy: number - aggregatemostrecentmodtime: Date - aggregatenumfiles: number - aggregatenumstuckchunks: number - aggregatenumsubdirs: number - aggregaterepairsize: number - aggregatesize: number - aggregatestuckhealth: number - aggregatestucksize: number - health: number - lasthealthchecktime: Date - maxhealthpercentage: number - maxhealth: number - minredundancy: number - mode: number - mostrecentmodtime: Date - numfiles: number - numstuckchunks: number - numsubdirs: number - repairsize: number - siapath: SiaPath - size: number - stuckhealth: number - stucksize: number - uid: number -} - -// struct2ts:go.sia.tech/siad/node/api.RenterDirectory -export interface RenterDirectory { - directories: DirectoryInfo[] | null - files: FileInfo[] | null -} - -// exports -export { ParseDate, ParseNumber, FromArray, ToObject } diff --git a/libs/sia-js/src/types/index.ts b/libs/sia-js/src/types/index.ts deleted file mode 100644 index 4564844bb..000000000 --- a/libs/sia-js/src/types/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from './block' -export * from './currency' -export * from './fileContracts' -export * from './signatures' -export * from './specifier' -export * from './timestamp' -export * from './transactions' -export * from './types' -export * from './wallet' -export * from './gen' diff --git a/libs/sia-js/src/types/signatures.ts b/libs/sia-js/src/types/signatures.ts deleted file mode 100644 index a6dc79123..000000000 --- a/libs/sia-js/src/types/signatures.ts +++ /dev/null @@ -1,77 +0,0 @@ -import { BlockHeight } from './block' -import { Specifier } from './specifier' -import { CryptoHash, SiaByteArray, SiaUint64 } from './types' - -// CoveredFields indicates which fields in a transaction have been covered by -// the signature. (Note that the signature does not sign the fields -// themselves, but rather their combined hash; see SigHash.) Each slice -// corresponds to a slice in the Transaction type, indicating which indices of -// the slice have been signed. The indices must be valid, i.e. within the -// bounds of the slice. In addition, they must be sorted and unique. -// -// As a convenience, a signature of the entire transaction can be indicated by -// the 'WholeTransaction' field. If 'WholeTransaction' == true, all other -// fields must be empty (except for the Signatures field, since a signature -// cannot sign itself). -export type CoveredFields = { - wholetransaction: boolean - siacoininputs: SiaUint64[] - siacoinoutputs: SiaUint64[] - filecontracts: SiaUint64[] - filecontractrevisions: SiaUint64[] - storageproofs: SiaUint64[] - siafundinputs: SiaUint64[] - siafundoutputs: SiaUint64[] - minerfees: SiaUint64[] - arbitrarydata: SiaUint64[] - transactionsignatures: SiaUint64[] -} - -// A SiaPublicKey is a public key prefixed by a Specifier. The Specifier -// indicates the algorithm used for signing and verification. Unrecognized -// algorithms will always verify, which allows new algorithms to be added to -// the protocol via a soft-fork. -export type SiaPublicKey = { - algorithm: Specifier - key: SiaByteArray -} - -// A TransactionSignature is a signature that is included in the transaction. -// The signature should correspond to a public key in one of the -// UnlockConditions of the transaction. This key is specified first by -// 'ParentID', which specifies the UnlockConditions, and then -// 'PublicKeyIndex', which indicates the key in the UnlockConditions. There -// are three types that use UnlockConditions: SiacoinInputs, SiafundInputs, -// and FileContractTerminations. Each of these types also references a -// ParentID, and this is the hash that 'ParentID' must match. The 'Timelock' -// prevents the signature from being used until a certain height. -// 'CoveredFields' indicates which parts of the transaction are being signed; -// see CoveredFields. -export type TransactionSignature = { - parentid: CryptoHash - publickeyindex: SiaUint64 - timelock: BlockHeight - coveredfields: CoveredFields - signature: SiaByteArray -} - -// UnlockConditions are a set of conditions which must be met to execute -// certain actions, such as spending a SiacoinOutput or terminating a -// FileContract. -// -// The simplest requirement is that the block containing the UnlockConditions -// must have a height >= 'Timelock'. -// -// 'PublicKeys' specifies the set of keys that can be used to satisfy the -// UnlockConditions; of these, at least 'SignaturesRequired' unique keys must sign -// the transaction. The keys that do not need to use the same cryptographic -// algorithm. -// -// If 'SignaturesRequired' == 0, the UnlockConditions are effectively "anyone can -// unlock." If 'SignaturesRequired' > len('PublicKeys'), then the UnlockConditions -// cannot be fulfilled under any circumstances. -export type UnlockConditions = { - timelock: BlockHeight - publickeys: SiaPublicKey[] - signaturesrequired: number -} diff --git a/libs/sia-js/src/types/specifier.ts b/libs/sia-js/src/types/specifier.ts deleted file mode 100644 index eed216470..000000000 --- a/libs/sia-js/src/types/specifier.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { SiaByteArray } from './types' - -// A Specifier is a fixed-length byte-array that serves two purposes. In -// the wire protocol, they are used to identify a particular encoding -// algorithm, signature algorithm, etc. This allows nodes to communicate on -// their own terms; for example, to reduce bandwidth costs, a node might -// only accept compressed messages. -// -// Internally, Specifiers are used to guarantee unique IDs. Various -// consensus types have an associated ID, calculated by hashing the data -// contained in the type. By prepending the data with Specifier, we can - -// guarantee that distinct types will never produce the same hash. -export type Specifier = SiaByteArray // [SpecifierLen]byte diff --git a/libs/sia-js/src/types/timestamp.ts b/libs/sia-js/src/types/timestamp.ts deleted file mode 100644 index 50f7ea8c8..000000000 --- a/libs/sia-js/src/types/timestamp.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { SiaUint64 } from './types' - -// Timestamp is a Unix timestamp, i.e. the number of the seconds since Jan 1 1970. -export type Timestamp = SiaUint64 - -// TimestampSlice is an array of timestamps -export type TimestampSlice = Timestamp[] diff --git a/libs/sia-js/src/types/transactions.ts b/libs/sia-js/src/types/transactions.ts deleted file mode 100644 index fe92d90f9..000000000 --- a/libs/sia-js/src/types/transactions.ts +++ /dev/null @@ -1,100 +0,0 @@ -import { Currency } from './currency' -import { - FileContract, - FileContractRevision, - StorageProof, -} from './fileContracts' -import { TransactionSignature, UnlockConditions } from './signatures' -import { CryptoHash, SiaByteArray } from './types' - -// IDs are used to refer to a type without revealing its contents. They -// are constructed by hashing specific fields of the type, along with a -// Specifier. While all of these types are hashes, defining type aliases -// gives us type safety and makes the code more readable. - -// TransactionID uniquely identifies a transaction -export type TransactionID = CryptoHash -// SiacoinOutputID uniquely identifies a siacoin output -export type SiacoinOutputID = CryptoHash -// SiafundOutputID uniquely identifies a siafund output -export type SiafundOutputID = CryptoHash -// FileContractID uniquely identifies a file contract -export type FileContractID = CryptoHash -// OutputID uniquely identifies an output -export type OutputID = CryptoHash - -// A Transaction is an atomic component of a block. Transactions can contain -// inputs and outputs, file contracts, storage proofs, and even arbitrary -// data. They can also contain signatures to prove that a given party has -// approved the transaction, or at least a particular subset of it. -// -// Transactions can depend on other previous transactions in the same block, -// but transactions cannot spend outputs that they create or otherwise be -// self-dependent. -export type Transaction = { - siacoininputs: SiacoinInput[] - siacoinoutputs: SiacoinOutput[] - filecontracts: FileContract[] - filecontractrevisions: FileContractRevision[] - storageproofs: StorageProof[] - siafundinputs: SiafundInput[] - siafundoutputs: SiafundOutput[] - minerfees: Currency[] - arbitrarydata: SiaByteArray[] - transactionsignatures: TransactionSignature[] -} - -// A SiacoinInput consumes a SiacoinOutput and adds the siacoins to the set of -// siacoins that can be spent in the transaction. The ParentID points to the -// output that is getting consumed, and the UnlockConditions contain the rules -// for spending the output. The UnlockConditions must match the UnlockHash of -// the output. -export type SiacoinInput = { - parentid: SiacoinOutputID - unlockconditions: UnlockConditions -} - -// A SiacoinOutput holds a volume of siacoins. Outputs must be spent -// atomically; that is, they must all be spent in the same transaction. The -// UnlockHash is the hash of the UnlockConditions that must be fulfilled -// in order to spend the output. -export type SiacoinOutput = { - value: Currency - unlockhash: UnlockHash -} - -// A SiafundInput consumes a SiafundOutput and adds the siafunds to the set of -// siafunds that can be spent in the transaction. The ParentID points to the -// output that is getting consumed, and the UnlockConditions contain the rules -// for spending the output. The UnlockConditions must match the UnlockHash of -// the output. -export type SiafundInput = { - parentid: SiafundOutputID - unlockconditions: UnlockConditions - claimunlockhash: UnlockHash -} - -// A SiafundOutput holds a volume of siafunds. Outputs must be spent -// atomically; that is, they must all be spent in the same transaction. The -// UnlockHash is the hash of a set of UnlockConditions that must be fulfilled -// in order to spend the output. -// -// When the SiafundOutput is spent, a SiacoinOutput is created, where: -// -// SiacoinOutput.Value := (SiafundPool - ClaimStart) / 10,000 * Value -// SiacoinOutput.UnlockHash := SiafundInput.ClaimUnlockHash -// -// When a SiafundOutput is put into a transaction, the ClaimStart must always -// equal zero. While the transaction is being processed, the ClaimStart is set -// to the value of the SiafundPool. -export type SiafundOutput = { - value: Currency - unlockhash: UnlockHash - claimstart: Currency -} - -// An UnlockHash is a specially constructed hash of the UnlockConditions type. -// "Locked" values can be unlocked by providing the UnlockConditions that hash -// to a given UnlockHash. See UnlockConditions.UnlockHash for details on how the -// UnlockHash is constructed. -export type UnlockHash = CryptoHash diff --git a/libs/sia-js/src/types/types.ts b/libs/sia-js/src/types/types.ts deleted file mode 100644 index 544043f33..000000000 --- a/libs/sia-js/src/types/types.ts +++ /dev/null @@ -1,9 +0,0 @@ -// numbers -export type SiaBigInt = string -export type SiaUint64 = number - -// crypto -export type CryptoHash = string - -// bytes -export type SiaByteArray = string diff --git a/libs/sia-js/src/types/wallet.ts b/libs/sia-js/src/types/wallet.ts deleted file mode 100644 index 38b4751a4..000000000 --- a/libs/sia-js/src/types/wallet.ts +++ /dev/null @@ -1,98 +0,0 @@ -import { BlockHeight } from './block' -import { Currency } from './currency' -import { Specifier } from './specifier' -import { Timestamp } from './timestamp' -import { - OutputID, - Transaction, - TransactionID, - UnlockHash, -} from './transactions' -import { CryptoHash, SiaByteArray } from './types' - -// Seed is cryptographic entropy that is used to derive spendable wallet -// addresses. -export type Seed = SiaByteArray // [crypto.EntropySize]byte - -// WalletTransactionID is a unique identifier for a wallet transaction. -export type WalletTransactionID = CryptoHash - -// A ProcessedInput represents funding to a transaction. The input is -// coming from an address and going to the outputs. The fund types are -// 'SiacoinInput', 'SiafundInput'. -export type ProcessedInput = { - parentid: OutputID - fundtype: Specifier - walletaddress: boolean - relatedaddress: UnlockHash - value: Currency -} - -// A ProcessedOutput is a siacoin output that appears in a transaction. -// Some outputs mature immediately, some are delayed, and some may never -// mature at all (in the event of storage proofs). -// -// Fund type can either be 'SiacoinOutput', 'SiafundOutput', 'ClaimOutput', -// 'MinerPayout', or 'MinerFee'. All outputs except the miner fee create -// outputs accessible to an address. Miner fees are not spendable, and -// instead contribute to the block subsidy. -// -// MaturityHeight indicates at what block height the output becomes -// available. SiacoinInputs and SiafundInputs become available immediately. -// ClaimInputs and MinerPayouts become available after 144 confirmations. -export type ProcessedOutput = { - id: OutputID - fundtype: Specifier - maturityheight: BlockHeight - walletaddress: boolean - relatedaddress: UnlockHash - value: Currency -} - -// A ProcessedTransaction is a transaction that has been processed into -// explicit inputs and outputs and tagged with some header data such as -// confirmation height + timestamp. -// -// Because of the block subsidy, a block is considered as a transaction. -// Since there is technically no transaction id for the block subsidy, the -// block id is used instead. -export type ProcessedTransaction = { - transaction: Transaction - transactionid: TransactionID - confirmationheight: BlockHeight - confirmationtimestamp: Timestamp - - inputs: ProcessedInput[] - outputs: ProcessedOutput[] -} - -// ValuedTransaction is a transaction that has been given incoming and -// outgoing siacoin value fields. -export type ValuedTransaction = { - transaction: Transaction - transactionid: TransactionID - confirmationheight: BlockHeight - confirmationtimestamp: Timestamp - - inputs: ProcessedInput[] - outputs: ProcessedOutput[] - - confirmedincomingvalue: Currency - confirmedoutgoingvalue: Currency -} - -// A UnspentOutput is a SiacoinOutput or SiafundOutput that the wallet -// is tracking. -export type UnspentOutput = { - id: OutputID - fundtype: Specifier - unlockhash: UnlockHash - value: Currency - confirmationheight: BlockHeight - iswatchonly: boolean -} - -// WalletSettings control the behavior of the Wallet. -export type WalletSettings = { - nodefrag: boolean -} diff --git a/libs/sia-js/tsconfig.json b/libs/sia-js/tsconfig.json deleted file mode 100644 index 62ebbd946..000000000 --- a/libs/sia-js/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.lib.json" - }, - { - "path": "./tsconfig.spec.json" - } - ] -} diff --git a/libs/sia-js/tsconfig.lib.json b/libs/sia-js/tsconfig.lib.json deleted file mode 100644 index dd347914d..000000000 --- a/libs/sia-js/tsconfig.lib.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "module": "commonjs", - "outDir": "../../dist/out-tsc", - "declaration": true, - "esModuleInterop": true, - "types": ["node"] - }, - "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], - "include": ["**/*.ts"] -} diff --git a/libs/sia-js/tsconfig.spec.json b/libs/sia-js/tsconfig.spec.json deleted file mode 100644 index ff0898f8c..000000000 --- a/libs/sia-js/tsconfig.spec.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../../dist/out-tsc", - "module": "commonjs", - "resolveJsonModule": true, - "esModuleInterop": true, - "types": ["jest", "node"] - }, - "include": [ - "**/*.test.ts", - "**/*.spec.ts", - "**/*.test.js", - "**/*.spec.js", - "**/*.d.ts", - "jest.config.ts" - ] -} diff --git a/libs/sia-nodejs/.babelrc b/libs/sia-nodejs/.babelrc deleted file mode 100644 index fd4cbcdef..000000000 --- a/libs/sia-nodejs/.babelrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "presets": [ - [ - "@nx/js/babel", - { - "useBuiltIns": "usage" - } - ] - ] -} diff --git a/libs/sia-nodejs/.eslintrc.json b/libs/sia-nodejs/.eslintrc.json deleted file mode 100644 index ef6ba6fa6..000000000 --- a/libs/sia-nodejs/.eslintrc.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "rules": { - "@typescript-eslint/no-empty-interface": "off" - }, - "extends": ["../../.eslintrc.json"], - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.json"], - "parser": "jsonc-eslint-parser", - "rules": { - "@nx/dependency-checks": "error" - } - } - ] -} diff --git a/libs/sia-nodejs/CHANGELOG.md b/libs/sia-nodejs/CHANGELOG.md deleted file mode 100644 index 3fcbf8722..000000000 --- a/libs/sia-nodejs/CHANGELOG.md +++ /dev/null @@ -1,46 +0,0 @@ -# Changelog - -## 0.1.8 - -### Patch Changes - -- Updated dependencies [1c376d0e] - - @siafoundation/sia-js@0.11.0 - -## [0.1.7](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.6...sia-nodejs-0.1.7) (2022-10-13) - -## [0.1.6](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.5...sia-nodejs-0.1.6) (2022-05-06) - -## [0.1.5](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.4...sia-nodejs-0.1.5) (2022-03-03) - -## [0.1.4](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.3...sia-nodejs-0.1.4) (2022-03-02) - -## [0.1.3](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.2...sia-nodejs-0.1.3) (2022-03-02) - -## [0.1.2](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.1...sia-nodejs-0.1.2) (2022-02-26) - -## [0.1.1](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.1.0...sia-nodejs-0.1.1) (2022-02-17) - -# [0.1.0](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.6...sia-nodejs-0.1.0) (2022-02-16) - -### Features - -- rename sia-core to sia-js ([fcdfb57](https://github.com/SiaFoundation/web/commit/fcdfb57ff37cb5a3893dbfb284d850e4da47ceef)) - -## [0.0.6](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.5...sia-nodejs-0.0.6) (2022-02-15) - -## [0.0.5](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.4...sia-nodejs-0.0.5) (2022-02-15) - -## [0.0.4](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.3...sia-nodejs-0.0.4) (2022-02-15) - -## [0.0.3](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.2...sia-nodejs-0.0.3) (2022-02-15) - -## [0.0.2](https://github.com/SiaFoundation/web/compare/sia-nodejs-0.0.1...sia-nodejs-0.0.2) (2022-02-15) - -### Bug Fixes - -- fix package name ([e210dd6](https://github.com/SiaFoundation/web/commit/e210dd6b3369605d4b0415828cc44f625c3a33ab)) - -## [0.0.2](https://github.com/SiaFoundation/sia-tech/compare/sia-nodejs-0.0.1...sia-nodejs-0.0.2) (2022-02-15) - -## 0.0.1 (2022-02-15) diff --git a/libs/sia-nodejs/README.md b/libs/sia-nodejs/README.md deleted file mode 100644 index ec283ce05..000000000 --- a/libs/sia-nodejs/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# sia-nodejs - -Sia NodeJS client for controlling `siad`. - -## Running unit tests - -Run `nx test sia-nodejs` to execute the unit tests via [Jest](https://jestjs.io). diff --git a/libs/sia-nodejs/jest.config.ts b/libs/sia-nodejs/jest.config.ts deleted file mode 100644 index a09162360..000000000 --- a/libs/sia-nodejs/jest.config.ts +++ /dev/null @@ -1,18 +0,0 @@ -/* eslint-disable */ -export default { - displayName: 'sia-nodejs', - - globals: {}, - testEnvironment: 'node', - transform: { - '^.+\\.[tj]sx?$': [ - 'ts-jest', - { - tsconfig: '/tsconfig.spec.json', - }, - ], - }, - moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/sia-nodejs', - preset: '../../jest.preset.js', -} diff --git a/libs/sia-nodejs/package.json b/libs/sia-nodejs/package.json deleted file mode 100644 index 387890011..000000000 --- a/libs/sia-nodejs/package.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "@siafoundation/sia-nodejs", - "description": "Sia NodeJS client for controlling a v1 `siad`.", - "version": "0.1.8", - "private": true, - "license": "MIT", - "dependencies": { - "@siafoundation/sia-js": "^0.11.0", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", - "tslib": "^2.6.2" - }, - "types": "./src/index.d.ts" -} diff --git a/libs/sia-nodejs/project.json b/libs/sia-nodejs/project.json deleted file mode 100644 index 4080a692b..000000000 --- a/libs/sia-nodejs/project.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "sia-nodejs", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "libs/sia-nodejs/src", - "projectType": "library", - "targets": { - "build": { - "executor": "@nx/js:tsc", - "outputs": ["{options.outputPath}"], - "options": { - "outputPath": "dist/libs/sia-nodejs", - "tsConfig": "libs/sia-nodejs/tsconfig.lib.json", - "packageJson": "libs/sia-nodejs/package.json", - "main": "libs/sia-nodejs/src/index.ts", - "assets": [ - { - "glob": "libs/sia-nodejs/*.md", - "input": ".", - "output": "." - } - ] - }, - "configurations": {} - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": [ - "libs/sia-nodejs/**/*.ts", - "libs/sia-nodejs/package.json" - ] - } - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": ["{workspaceRoot}/coverage/libs/sia-nodejs"], - "options": { - "jestConfig": "libs/sia-nodejs/jest.config.ts", - "passWithNoTests": true - } - } - }, - "tags": [] -} diff --git a/libs/sia-nodejs/src/index.ts b/libs/sia-nodejs/src/index.ts deleted file mode 100644 index d7203165d..000000000 --- a/libs/sia-nodejs/src/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './lib/client' -export * from '@siafoundation/sia-js' diff --git a/libs/sia-nodejs/src/lib/client.spec.ts b/libs/sia-nodejs/src/lib/client.spec.ts deleted file mode 100644 index 921bb9694..000000000 --- a/libs/sia-nodejs/src/lib/client.spec.ts +++ /dev/null @@ -1,65 +0,0 @@ -import child_process from 'child_process' -import fs from 'fs' -import { Client } from './client' - -// Global constants -const BIN_PATH = '/Users' -let spawnMock = jest.fn() - -describe('client', () => { - beforeEach(() => { - jest.mock('fs') - fs.existsSync = jest.fn().mockReturnValue(true) - jest.mock('child_process') - spawnMock = jest.fn() - child_process.spawn = spawnMock - }) - it('can create client with no config', () => { - const client = new Client({}) - client.launch(BIN_PATH) - expect(spawnMock.mock.calls.length).toBe(1) - // // This should match daemon path passed into the function - const arg0: string = spawnMock.mock.calls[0][0] - expect(arg0).toBe(BIN_PATH) - // // Check that default flags are passed in - const arg1: string[] = spawnMock.mock.calls[0][1] - expect(arg1).toContain('--api-addr=localhost:9980') - expect(arg1).toContain('--host-addr=:9982') - expect(arg1).toContain('--rpc-addr=:9981') - }) - - it('can replace client config', () => { - const client = new Client({ - agent: 'custom-agent', - apiAuthentication: true, - apiAuthenticationPassword: 'foo', - apiHost: '1.1.1.1', - apiPort: 1337, - dataDirectory: 'bar', - hostPort: 1339, - modules: { - consensus: true, - explorer: true, - gateway: true, - host: true, - miner: false, - feeManager: false, - renter: true, - transactionPool: true, - wallet: true, - }, - rpcPort: 1338, - }) - client.launch(BIN_PATH) - const arg1: string[] = spawnMock.mock.calls[0][1] - - expect(arg1.length).toBe(7) - expect(arg1).toContain('--agent=custom-agent') - expect(arg1).toContain('--api-addr=1.1.1.1:1337') - expect(arg1).toContain('--authenticate-api=true') - expect(arg1).toContain('--host-addr=:1339') - // skipping module test here because we have a seperate unit test for parseModules - expect(arg1).toContain('--rpc-addr=:1338') - expect(arg1).toContain('--sia-directory=bar') - }) -}) diff --git a/libs/sia-nodejs/src/lib/client.ts b/libs/sia-nodejs/src/lib/client.ts deleted file mode 100644 index 290071fcb..000000000 --- a/libs/sia-nodejs/src/lib/client.ts +++ /dev/null @@ -1,477 +0,0 @@ -import { ChildProcess, spawn, SpawnOptions } from 'child_process' -import * as path from 'path' -import * as fs from 'fs' -import * as http from 'http' -import request from 'request' -import rp from 'request-promise-native' -import { Url } from 'url' -import { - ConsensusGET, - GatewayGET, - DaemonVersion, - WalletGET, - RenterContracts, - RenterGET, - RenterRecoveryStatusGET, - SiaConstants, - Allowance, - RenterFiles, - RenterDirectory, - RenterFile, - RenterFuseInfo, - RenterBackupsGET, -} from '@siafoundation/sia-js' -import { ClientConfig } from './proto' -import { parseFlags } from './flags' -import { getSiaPassword } from './utils' - -interface WalletAddressGET { - address: string -} - -// https://sia.tech/docs/#optional-wallet-parameters -interface WalletOptionalParams { - encryptionpassword?: string - dictionary?: string - force?: boolean -} - -export class Client { - protected config: ClientConfig - protected process?: ChildProcess - protected agent: http.Agent - - constructor(config: ClientConfig = {}) { - try { - if (config.dataDirectory) { - fs.existsSync(config.dataDirectory) - } - const defaultConfig: ClientConfig = { - apiAuthentication: 'auto', - apiHost: 'localhost', - apiPort: 9980, - hostPort: 9982, - rpcPort: 9981, - } - this.config = { ...defaultConfig, ...config } - // If strategy is set to 'auto', attempt to read from default siapassword file. - if (this.config.apiAuthentication === 'auto') { - this.config.apiAuthenticationPassword = getSiaPassword() - } - this.agent = new http.Agent({ - keepAlive: true, - maxSockets: 30, - }) - } catch (e) { - if (e instanceof Error) { - throw new Error(e.message) - } else { - throw new Error() - } - } - } - - public launch = ( - binPath: string, - spawnOptions: SpawnOptions = {} - ): ChildProcess => { - try { - // Check if siad exists - if (fs.existsSync(binPath)) { - // Create flags - const flags = parseFlags(this.config) - // Set euid if avl - if (process.geteuid) { - spawnOptions.uid = process.geteuid() - } - - this.process = spawn(binPath, flags, spawnOptions) - - return this.process - } else { - throw new Error('could not find binary file in filesystem') - } - } catch (e) { - if (e instanceof Error) { - throw new Error(e.message) - } else { - throw new Error() - } - } - } - - public makeRequest = async ( - endpoint: string | Url, - querystring?: object | undefined, - method = 'GET', - timeout = 30000 - ): Promise => { - const requestOptions = this.mergeDefaultRequestOptions({ - url: endpoint, - timeout, - qs: querystring, - method, - }) - const data = await rp(requestOptions) - return data - } - - // directly call method that is backwards compatible with Sia.JS - public call = (options: rp.OptionsWithUrl | string) => { - if (typeof options === 'string') { - return this.makeRequest(options) - } else { - const endpoint = options.url - const method = options.method - const qs = options.qs || undefined - const timeout = options.timeout || undefined - return this.makeRequest(endpoint, qs, method, timeout) - } - } - - // DaemonVersion returns the /daemon/version endpoint - public DaemonVersion = () => { - return this.makeRequest('/daemon/version') - } - - // DaemonStop attempts to send a signal to /daemon/stop to initiate the - // shutdown process - public DaemonStop = () => { - return this.makeRequest('/daemon/stop') - } - - // Consensus returns the /consensus endpoint. - public Consensus = () => { - return this.makeRequest('/consensus') - } - - // Gateway returns the /gateway endpoint - public Gateway = () => { - return this.makeRequest('/gateway') - } - - // Wallet returns the /wallet endpoint - public Wallet = () => { - return this.makeRequest('/wallet') - } - - // Renter returns the /renter endpoint. It includes allowance settings and financial metrics. - public Renter = () => { - return this.makeRequest('/renter') - } - - public PauseUploads = (duration: number) => { - return this.call({ - url: '/renter/uploads/pause', - method: 'POST', - qs: { - duration, - }, - }) - } - - public ResumeUploads = () => { - return this.call({ - url: '/renter/uploads/resume', - method: 'POST', - }) - } - - // Initialize a new wallet by posting to the /wallet/init endpoint - public InitWallet = ( - encryptionpassword: string, - dictionary: string, - force: boolean - ) => { - return this.call({ - url: '/wallet/init', - method: 'POST', - qs: { - encryptionpassword, - dictionary, - force, - }, - }) - } - - // RestoreWallet restores a wallet from a seed string - public RestoreWallet = (seed: string, params?: WalletOptionalParams) => { - return this.call({ - url: '/wallet/init/seed', - method: 'POST', - qs: { - seed, - ...params, - }, - // long timeout because of how long the scan takes - timeout: 60000 * 30, - }) - } - - // UnlockWallet will unlock the siad wallet with the supplied password - public UnlockWallet = (encryptionpassword: string) => { - return this.call({ - url: '/wallet/unlock', - method: 'POST', - qs: { - encryptionpassword, - }, - }) - } - - // ChangePassword will update your current password - public ChangePassword = (encryptionpassword: string, newpassword: string) => { - return this.call({ - url: '/wallet/changepassword', - method: 'POST', - qs: { - encryptionpassword, - newpassword, - }, - }) - } - - // VerifyWalletPassword will verify whether the supplied password is valid - public VerifyWalletPassword = (password: string) => { - return this.makeRequest<{ valid: boolean }>('/wallet/verifypassword', { - password, - }) - } - - // GetAddress returns a single wallet address generated from siad - public GetAddress = () => { - return this.makeRequest('/wallet/address') - } - - // MountFuse attempts to mount the given siamountpath to the local path with FUSE. - public MountFuse = ( - mountpath: string, - siapath: string, - readonly = true, - allowother = false - ) => { - return this.call({ - url: '/renter/fuse/mount', - method: 'POST', - qs: { - siapath, - mount: mountpath, - readonly, - allowother, - }, - }) - } - - // UnmountFuse will unmount the existing mounted FUSE. - public UnmountFuse = (mountpath: string) => { - return this.call({ - url: '/renter/fuse/unmount', - method: 'POST', - qs: { - mount: mountpath, - }, - }) - } - - // FuseSettings returns the FUSE api settings. Can be used to detect if FUSE - // is currently mounted. - public FuseSettings = () => { - return this.makeRequest('/renter/fuse') - } - - // GET /renter/backups wrapper - public RenterBackups = () => { - return this.makeRequest('/renter/backups') - } - - // GetOrderedAddresses fetches addresses generated by the wallet in reverse - // order. The last address generated by the wallet will be the first returned. - // This also means that addresses which weren't generated using the wallet's - // seed can't be retrieved with this endpoint. - public GetOrderedAddresses = (count: number) => { - return this.call({ - url: '/wallet/seedaddrs', - method: 'GET', - qs: { - count, - }, - }) - } - - // GetContracts returns the state of all contracts from the renter. - public GetContracts = () => { - return this.makeRequest('/renter/contracts') - } - - // RecoveryScanProgress returns the state of an ongoing contract recovery. - public RecoveryScanProgress = () => { - return this.makeRequest('/renter/recoveryscan') - } - - // Constants return the daemon constants. - public Constants = () => { - return this.makeRequest('/daemon/constants') - } - - // Sets the allowance on the renter - public SetAllowance = (args: Allowance) => { - return this.call({ - url: '/renter', - method: 'POST', - qs: args, - }) - } - - // Retrieves all the files from siad - public GetFiles = () => { - return this.makeRequest('/renter/files') - } - - public GetFile = (siapath: string) => { - const resolvedPath = path.posix.join('/renter/file', siapath) - return this.makeRequest(resolvedPath) - } - - // Upload helps upload a local file to Sia - public Upload = ( - siapath: string, - source: string, - datapieces?: number, - paritypieces?: number - ) => { - const resolvedPath = path.posix.join('/renter/upload', siapath) - - return this.call({ - url: encodeURI(resolvedPath), - method: 'POST', - qs: { - source, - datapieces, - paritypieces, - }, - }) - } - - // GetDir returns the siapath directory - public GetDir = (siadir: string) => { - const resolvedPath = path.posix.join('/renter/dir', siadir) - return this.makeRequest(resolvedPath) - } - - // Will create an empty dir at the given dirpath - public CreateDir = (dirpath: string, { recursive = false } = {}) => { - const sep = path.posix.sep - if (!recursive) { - const resolvedPath = path.posix.join('/renter/dir', dirpath) - return this.call({ - url: resolvedPath, - method: 'POST', - qs: { - action: 'create', - }, - }) - } - return dirpath.split(sep).reduce((parentDir, childDir) => { - const currDir = path.posix.resolve(parentDir) - try { - if (childDir !== '') { - const resolvedPath = path.posix.join( - '/renter/dir', - path.join(parentDir, childDir) - ) - this.call({ - url: resolvedPath, - method: 'POST', - qs: { - action: 'create', - }, - }) - } - } catch (e) { - console.log('error ', e) // tslint:disable-line - } - return path.join(parentDir, currDir) - }, '') - } - - // Rename allows you to rename a siapath with newsiapath - public RenameFile = (siapath: string, newsiapath: string) => { - const resolvedPath = path.posix.join('/renter/rename', siapath) - return this.call({ - url: resolvedPath, - method: 'POST', - qs: { - newsiapath, - }, - }) - } - - // RenameDir allows you to rename a dir siapath to a new siapath - public RenameDir = (dirpath: string, newpath: string) => { - const resolvedPath = path.posix.join('/renter/dir', dirpath) - return this.call({ - url: resolvedPath, - method: 'POST', - qs: { - action: 'rename', - newsiapath: newpath, - }, - }) - } - - // hasExistingWallet is a helper resolves a boolean value stating whether the - // daemon has an exiting wallet attached or not. - public hasExistingWallet = async (): Promise => { - const w = await this.Wallet() - // if wallet is not encrypted, and it's locked, then a wallet has not be - // initiated. - if (!w.encrypted && !w.unlocked) { - return true - } else { - return false - } - } - - // Checks if siad responds to a /version call - public isRunning = async (): Promise => { - if (this.process) { - try { - await this.DaemonVersion() - return true - } catch (e) { - return false - } - } else { - try { - await this.DaemonVersion() - return true - } catch (e) { - return false - } - } - } - - public getConnectionUrl = (): string => { - if (!this.config.apiAuthenticationPassword) { - this.config.apiAuthenticationPassword = getSiaPassword() - } - return `http://:${this.config.apiAuthenticationPassword}@${this.config.apiHost}:${this.config.apiPort}` - } - - private mergeDefaultRequestOptions = ( - opts: rp.OptionsWithUrl - ): rp.OptionsWithUrl => { - // These are the default config sourced from the Sia Agent - const defaultOptions: request.CoreOptions = { - baseUrl: this.getConnectionUrl(), - headers: { - 'User-Agent': this.config.agent || 'Sia-Agent', - }, - json: true, - pool: this.agent, - timeout: 30000, - } - const formattedOptions = { ...defaultOptions, ...opts } - return formattedOptions - } -} diff --git a/libs/sia-nodejs/src/lib/flags.spec.ts b/libs/sia-nodejs/src/lib/flags.spec.ts deleted file mode 100644 index da98210cc..000000000 --- a/libs/sia-nodejs/src/lib/flags.spec.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { parseFlags, parseModules } from './flags' -import { ClientConfig, ModuleConfig } from './proto' - -describe('flags', () => { - it('return full set of modules', () => { - const moduleConfig: ModuleConfig = { - consensus: true, - explorer: true, - feeManager: true, - gateway: true, - host: true, - miner: true, - renter: true, - transactionPool: true, - wallet: true, - } - const m = parseModules(moduleConfig) - expect(m).toBe('cefghmrtw') - }) - - // parseFlags - - const FULL_CONFIG: ClientConfig = { - agent: 'foo', - apiAuthentication: true, - apiAuthenticationPassword: 'xyz', - dataDirectory: 'bar', - modules: { - consensus: true, - explorer: true, - feeManager: true, - gateway: true, - host: true, - miner: true, - renter: true, - transactionPool: true, - wallet: true, - }, - } - - it('ensure default flags return same length', () => { - const config: ClientConfig = {} - const flagList = parseFlags(config) - expect(flagList.length).toBe(3) - }) - - it('ensure custom flags return more flags', () => { - const flagList = parseFlags(FULL_CONFIG) - expect(flagList.length).toBe(7) - }) - - it('ensure string flags are printed out correctly', () => { - const flagList = parseFlags(FULL_CONFIG) - expect(flagList).toContain('--agent=foo') - expect(flagList).toContain('--api-addr=localhost:9980') - expect(flagList).toContain('--authenticate-api=true') - expect(flagList).toContain('--host-addr=:9982') - expect(flagList).toContain('--modules=cefghmrtw') - expect(flagList).toContain('--rpc-addr=:9981') - expect(flagList).toContain('--sia-directory=bar') - }) -}) diff --git a/libs/sia-nodejs/src/lib/flags.ts b/libs/sia-nodejs/src/lib/flags.ts deleted file mode 100644 index 01c16c841..000000000 --- a/libs/sia-nodejs/src/lib/flags.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { ClientConfig, ModuleConfig, SiadFlags } from './proto' -import { assignDefined } from './utils' - -/** - * Creates a list of flags ready to be consumed by the spawn process. - * @param config - */ -export function parseFlags(config: ClientConfig): string[] { - // Default flags used in the Sia Daemon. - const defaultFlags: SiadFlags = { - 'api-addr': 'localhost:9980', - 'authenticate-api': false, - 'disable-api-security': false, - 'host-addr': ':9982', - 'rpc-addr': ':9981', - } - // Build flag arguements from constructor details - const flags = assignDefined(defaultFlags as Record, { - agent: config.agent, - 'api-addr': - config.apiHost && config.apiPort - ? `${config.apiHost}:${config.apiPort}` - : null, - // If auto, we are going to attempt to resolve api password through the default sia file. - 'authenticate-api': - config.apiAuthentication === 'auto' ? null : config.apiAuthentication, - 'host-addr': config.hostPort ? `:${config.hostPort}` : null, - modules: config.modules ? parseModules(config.modules) : null, - 'rpc-addr': config.rpcPort ? `:${config.rpcPort}` : null, - 'sia-directory': config.dataDirectory, - }) - // Create flag string list to pass to siad - const filterFlags = (key: string) => flags[key] !== false - const mapFlags = (key: string) => `--${key}=${flags[key]}` - const flagList = Object.keys(flags).filter(filterFlags).map(mapFlags) - return flagList -} - -/** - * Returns a module string that can be passed as a flag value to siad. - * @param modules - */ -export function parseModules(modules: ModuleConfig): string { - const moduleMap: Record = { - consensus: 'c', - explorer: 'e', - feeManager: 'f', - gateway: 'g', - host: 'h', - miner: 'm', - renter: 'r', - transactionPool: 't', - wallet: 'w', - } - - let enabledModules = '' - Object.keys(modules).forEach((k) => { - if (modules[k]) { - enabledModules += moduleMap[k] - } - }) - return enabledModules -} diff --git a/libs/sia-nodejs/src/lib/proto.ts b/libs/sia-nodejs/src/lib/proto.ts deleted file mode 100644 index 344f944e1..000000000 --- a/libs/sia-nodejs/src/lib/proto.ts +++ /dev/null @@ -1,41 +0,0 @@ -// ClientConfig is the object that is passed to configure the instantiation of the Sia Daemon. -export interface ClientConfig extends Record { - apiHost?: string - apiPort?: number - hostPort?: number - rpcPort?: number - agent?: string - apiAuthentication?: 'auto' | boolean - apiAuthenticationPassword?: string - dataDirectory?: string - modules?: ModuleConfig -} - -// ModuleConfig defines modules available in Sia. -export interface ModuleConfig extends Record { - consensus: boolean - explorer: boolean - feeManager: boolean - gateway: boolean - host: boolean - miner: boolean - renter: boolean - transactionPool: boolean - wallet: boolean -} - -// SiadFlags defines all the possible configurable flag values for the Sia Daemon. -export interface SiadFlags { - agent?: string - 'api-addr'?: string - 'authenticate-api'?: boolean - 'disable-api-security'?: boolean - 'host-addr'?: string - modules?: string - 'no-boostrap'?: boolean - profile?: string - 'profile-directory'?: string - 'rpc-addr'?: string - 'sia-directory'?: string - 'temp-password'?: string -} diff --git a/libs/sia-nodejs/src/lib/utils.spec.ts b/libs/sia-nodejs/src/lib/utils.spec.ts deleted file mode 100644 index f22091091..000000000 --- a/libs/sia-nodejs/src/lib/utils.spec.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { assignDefined } from './utils' - -const from = { - a: 1, - b: 2, - c: 3, -} - -describe('utils', () => { - it('check that object with null properties are skipped', () => { - const to = { - a: null, - b: 'b', - c: 'c', - } - const actual = assignDefined({ ...from }, to) - const expected = { - a: 1, - b: 'b', - c: 'c', - } - expect(actual).toEqual(expected) - }) - - it('check that basic object assign mechanisms work', () => { - const to = { - a: 'a', - b: 'b', - c: 'c', - } - const actual = assignDefined({ ...from }, to) - expect(actual).toEqual(to) - }) - - it('check that object with undefined properties are skipped', () => { - const to = { - a: 'a', - b: undefined, - c: undefined, - } - - const actual = assignDefined({ ...from }, to) - const expected = { - a: 'a', - b: 2, - c: 3, - } - expect(actual).toEqual(expected) - }) -}) diff --git a/libs/sia-nodejs/src/lib/utils.ts b/libs/sia-nodejs/src/lib/utils.ts deleted file mode 100644 index 8ab8a9c2b..000000000 --- a/libs/sia-nodejs/src/lib/utils.ts +++ /dev/null @@ -1,56 +0,0 @@ -import * as fs from 'fs' -import * as os from 'os' -import * as path from 'path' - -/** - * Works similarly to Object.assign, but checks properties for undefined or - * null values, skipping them if detected. - * @param target - * @param sources - */ -export function assignDefined( - target: Record, - ...sources: Record[] -) { - for (const source of sources) { - for (const key of Object.keys(source)) { - const val = source[key] - if (val !== undefined && val !== null) { - target[key] = val - } - } - } - return target -} - -/** - * Retrieves the API password using the SIA_API_PASSWORD env variable or - * attempt to read the local dir with fs. - */ -export function getSiaPassword() { - try { - let configPath - switch (process.platform) { - case 'win32': - configPath = path.join(process.env['LOCALAPPDATA'] as string, 'Sia') - break - case 'darwin': - configPath = path.join( - os.homedir(), - 'Library', - 'Application Support', - 'Sia' - ) - break - default: - configPath = path.join(os.homedir(), '.sia') - } - const password = process.env['SIA_API_PASSWORD'] - ? process.env['SIA_API_PASSWORD'] - : fs.readFileSync(path.join(configPath, 'apipassword')).toString() - return password.trim() || '' - } catch (err) { - // if apipassword doesn't exist, we'll just return an empty string - return '' - } -} diff --git a/libs/sia-nodejs/tsconfig.json b/libs/sia-nodejs/tsconfig.json deleted file mode 100644 index 62ebbd946..000000000 --- a/libs/sia-nodejs/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "files": [], - "include": [], - "references": [ - { - "path": "./tsconfig.lib.json" - }, - { - "path": "./tsconfig.spec.json" - } - ] -} diff --git a/libs/sia-nodejs/tsconfig.lib.json b/libs/sia-nodejs/tsconfig.lib.json deleted file mode 100644 index dd347914d..000000000 --- a/libs/sia-nodejs/tsconfig.lib.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "module": "commonjs", - "outDir": "../../dist/out-tsc", - "declaration": true, - "esModuleInterop": true, - "types": ["node"] - }, - "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], - "include": ["**/*.ts"] -} diff --git a/libs/sia-nodejs/tsconfig.spec.json b/libs/sia-nodejs/tsconfig.spec.json deleted file mode 100644 index 1b5c13519..000000000 --- a/libs/sia-nodejs/tsconfig.spec.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../../dist/out-tsc", - "module": "commonjs", - "esModuleInterop": true, - "types": ["jest", "node"] - }, - "include": [ - "**/*.test.ts", - "**/*.spec.ts", - "**/*.test.tsx", - "**/*.spec.tsx", - "**/*.test.js", - "**/*.spec.js", - "**/*.test.jsx", - "**/*.spec.jsx", - "**/*.d.ts", - "jest.config.ts" - ] -} diff --git a/libs/units/package.json b/libs/units/package.json index b9adbee40..b22e91ad7 100644 --- a/libs/units/package.json +++ b/libs/units/package.json @@ -4,11 +4,11 @@ "version": "0.1.3", "license": "MIT", "dependencies": { - "@siafoundation/design-system": "^0.61.0", "@siafoundation/sia-central": "^0.1.0", "bignumber.js": "^9.0.2", - "@siafoundation/sia-js": "^0.11.0", - "@siafoundation/react-core": "^0.15.0" + "@siafoundation/react-core": "^0.15.0", + "blakejs": "^1.2.1", + "lodash": "^4.17.21" }, "types": "./src/index.d.ts" } diff --git a/libs/sia-js/src/lib/address.spec.ts b/libs/units/src/address.spec.ts similarity index 100% rename from libs/sia-js/src/lib/address.spec.ts rename to libs/units/src/address.spec.ts diff --git a/libs/sia-js/src/lib/address.ts b/libs/units/src/address.ts similarity index 100% rename from libs/sia-js/src/lib/address.ts rename to libs/units/src/address.ts diff --git a/libs/design-system/src/lib/blockTime.ts b/libs/units/src/blockTime.ts similarity index 100% rename from libs/design-system/src/lib/blockTime.ts rename to libs/units/src/blockTime.ts diff --git a/libs/design-system/src/lib/bytes.ts b/libs/units/src/bytes.ts similarity index 100% rename from libs/design-system/src/lib/bytes.ts rename to libs/units/src/bytes.ts diff --git a/libs/sia-js/src/lib/currency.spec.ts b/libs/units/src/currency.spec.ts similarity index 100% rename from libs/sia-js/src/lib/currency.spec.ts rename to libs/units/src/currency.spec.ts diff --git a/libs/sia-js/src/lib/currency.ts b/libs/units/src/currency.ts similarity index 100% rename from libs/sia-js/src/lib/currency.ts rename to libs/units/src/currency.ts diff --git a/libs/sia-js/src/lib/humanUnits.ts b/libs/units/src/humanUnits.ts similarity index 100% rename from libs/sia-js/src/lib/humanUnits.ts rename to libs/units/src/humanUnits.ts diff --git a/libs/units/src/index.ts b/libs/units/src/index.ts index 28174b118..5c83252f8 100644 --- a/libs/units/src/index.ts +++ b/libs/units/src/index.ts @@ -1,85 +1,6 @@ -import { TBToBytes, monthsToBlocks } from '@siafoundation/design-system' -import { SiaCentralHost } from '@siafoundation/sia-central' -import BigNumber from 'bignumber.js' -import { humanBytes, humanSiacoin, humanSpeed } from '@siafoundation/sia-js' -import { CurrencyOption } from '@siafoundation/react-core' - -type Props = { - price: string - exchange?: { - currency: CurrencyOption - rate: string - } -} - -export function getStorageCost({ price, exchange }: Props) { - return exchange - ? `${exchange.currency.prefix}${new BigNumber(price) - .times(TBToBytes(1)) - .times(monthsToBlocks(1)) - .div(1e24) - .times(exchange.rate || 1) - .toFormat(2)}/TB` - : `${humanSiacoin( - new BigNumber(price).times(TBToBytes(1)).times(monthsToBlocks(1)), - { fixed: 3 } - )}/TB` -} - -export function getDownloadCost({ price, exchange }: Props) { - return exchange - ? `${exchange.currency.prefix}${new BigNumber(price) - .times(TBToBytes(1)) - .div(1e24) - .times(exchange.rate || 1) - .toFormat(2)}/TB` - : `${humanSiacoin(new BigNumber(price).times(TBToBytes(1)), { - fixed: 3, - })}/TB` -} - -export function getUploadCost({ price, exchange }: Props) { - return exchange - ? `${exchange.currency.prefix}${new BigNumber(price) - .times(TBToBytes(1)) - .div(1e24) - .times(exchange.rate || 1) - .toFormat(2)}/TB` - : `${humanSiacoin(new BigNumber(price).times(TBToBytes(1)), { - fixed: 3, - })}/TB` -} - -type SiaCentralPartialHost = { - benchmark?: { - data_size: number - download_time: number - upload_time: number - } -} - -export function getDownloadSpeed(host: SiaCentralPartialHost) { - return host.benchmark - ? humanSpeed( - (host.benchmark.data_size * 8) / (host.benchmark.download_time / 1000) - ) - : '-' -} - -export function getUploadSpeed(host: SiaCentralPartialHost) { - return host.benchmark - ? humanSpeed( - (host.benchmark.data_size * 8) / (host.benchmark.upload_time / 1000) - ) - : '-' -} - -export function getRemainingOverTotalStorage(host: SiaCentralHost) { - return `${humanBytes(host.settings.remaining_storage)}/${humanBytes( - host.settings.total_storage - )} remaining` -} - -export function getRemainingStorage(host: SiaCentralHost) { - return humanBytes(host.settings.remaining_storage) -} +export * from './storage' +export * from './address' +export * from './humanUnits' +export * from './currency' +export * from './blockTime' +export * from './bytes' diff --git a/libs/units/src/storage.ts b/libs/units/src/storage.ts new file mode 100644 index 000000000..587147bdb --- /dev/null +++ b/libs/units/src/storage.ts @@ -0,0 +1,87 @@ +import { TBToBytes } from './bytes' +import { monthsToBlocks } from './blockTime' +import { SiaCentralHost } from '@siafoundation/sia-central' +import BigNumber from 'bignumber.js' +import { humanSiacoin } from './currency' +import { humanBytes, humanSpeed } from './humanUnits' +import { CurrencyOption } from '@siafoundation/react-core' + +type Props = { + price: string + exchange?: { + currency: CurrencyOption + rate: string + } +} + +export function getStorageCost({ price, exchange }: Props) { + return exchange + ? `${exchange.currency.prefix}${new BigNumber(price) + .times(TBToBytes(1)) + .times(monthsToBlocks(1)) + .div(1e24) + .times(exchange.rate || 1) + .toFormat(2)}/TB` + : `${humanSiacoin( + new BigNumber(price).times(TBToBytes(1)).times(monthsToBlocks(1)), + { fixed: 3 } + )}/TB` +} + +export function getDownloadCost({ price, exchange }: Props) { + return exchange + ? `${exchange.currency.prefix}${new BigNumber(price) + .times(TBToBytes(1)) + .div(1e24) + .times(exchange.rate || 1) + .toFormat(2)}/TB` + : `${humanSiacoin(new BigNumber(price).times(TBToBytes(1)), { + fixed: 3, + })}/TB` +} + +export function getUploadCost({ price, exchange }: Props) { + return exchange + ? `${exchange.currency.prefix}${new BigNumber(price) + .times(TBToBytes(1)) + .div(1e24) + .times(exchange.rate || 1) + .toFormat(2)}/TB` + : `${humanSiacoin(new BigNumber(price).times(TBToBytes(1)), { + fixed: 3, + })}/TB` +} + +type SiaCentralPartialHost = { + benchmark?: { + data_size: number + download_time: number + upload_time: number + } +} + +export function getDownloadSpeed(host: SiaCentralPartialHost) { + return host.benchmark + ? humanSpeed( + (host.benchmark.data_size * 8) / (host.benchmark.download_time / 1000) + ) + : '-' +} + +export function getUploadSpeed(host: SiaCentralPartialHost) { + return host.benchmark + ? humanSpeed( + (host.benchmark.data_size * 8) / (host.benchmark.upload_time / 1000) + ) + : '-' +} + +export function getRemainingOverTotalStorage(host: SiaCentralHost) { + return `${humanBytes(host.settings.remaining_storage)}/${humanBytes( + host.settings.total_storage + )} remaining` +} + +export function getRemainingStorage(host: SiaCentralHost) { + return humanBytes(host.settings.remaining_storage) +} diff --git a/package-lock.json b/package-lock.json index 21349d662..23719daed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -284,7 +284,7 @@ "@siafoundation/react-core": "^0.15.0", "@siafoundation/react-icons": "^0.1.0", "@siafoundation/react-sia-central": "^0.0.3", - "@siafoundation/sia-js": "^0.11.0", + "@siafoundation/units": "^0.1.3", "@tailwindcss/container-queries": "^0.1.1", "@visx/axis": "^2.18.0", "@visx/brush": "^2.18.0", @@ -432,6 +432,7 @@ "libs/sia-js": { "name": "@siafoundation/sia-js", "version": "0.11.0", + "extraneous": true, "license": "MIT", "dependencies": { "bignumber.js": "^9.0.2", @@ -443,6 +444,7 @@ "libs/sia-nodejs": { "name": "@siafoundation/sia-nodejs", "version": "0.1.8", + "extraneous": true, "license": "MIT", "dependencies": { "@siafoundation/sia-js": "^0.11.0", @@ -462,11 +464,11 @@ "version": "0.1.3", "license": "MIT", "dependencies": { - "@siafoundation/design-system": "^0.61.0", "@siafoundation/react-core": "^0.15.0", "@siafoundation/sia-central": "^0.1.0", - "@siafoundation/sia-js": "^0.11.0", - "bignumber.js": "^9.0.2" + "bignumber.js": "^9.0.2", + "blakejs": "^1.2.1", + "lodash": "^4.17.21" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -7343,14 +7345,6 @@ "resolved": "libs/sia-central", "link": true }, - "node_modules/@siafoundation/sia-js": { - "resolved": "libs/sia-js", - "link": true - }, - "node_modules/@siafoundation/sia-nodejs": { - "resolved": "libs/sia-nodejs", - "link": true - }, "node_modules/@siafoundation/units": { "resolved": "libs/units", "link": true @@ -32812,7 +32806,7 @@ "@siafoundation/react-core": "^0.15.0", "@siafoundation/react-icons": "^0.1.0", "@siafoundation/react-sia-central": "^0.0.3", - "@siafoundation/sia-js": "^0.11.0", + "@siafoundation/units": "^0.1.3", "@tailwindcss/container-queries": "^0.1.1", "@visx/axis": "^2.18.0", "@visx/brush": "^2.18.0", @@ -32916,32 +32910,14 @@ "lodash": "^4.17.21" } }, - "@siafoundation/sia-js": { - "version": "file:libs/sia-js", - "requires": { - "bignumber.js": "^9.0.2", - "blakejs": "^1.2.1", - "lodash": "^4.17.21", - "tslib": "^2.6.2" - } - }, - "@siafoundation/sia-nodejs": { - "version": "file:libs/sia-nodejs", - "requires": { - "@siafoundation/sia-js": "^0.11.0", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", - "tslib": "^2.6.2" - } - }, "@siafoundation/units": { "version": "file:libs/units", "requires": { - "@siafoundation/design-system": "^0.61.0", "@siafoundation/react-core": "^0.15.0", "@siafoundation/sia-central": "^0.1.0", - "@siafoundation/sia-js": "^0.11.0", - "bignumber.js": "^9.0.2" + "bignumber.js": "^9.0.2", + "blakejs": "^1.2.1", + "lodash": "^4.17.21" } }, "@sinclair/typebox": { diff --git a/tsconfig.base.json b/tsconfig.base.json index ab2367fbf..aaff91b24 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -27,8 +27,6 @@ ], "@siafoundation/react-walletd": ["libs/react-walletd/src/index.ts"], "@siafoundation/sia-central": ["libs/sia-central/src/index.ts"], - "@siafoundation/sia-js": ["libs/sia-js/src/index.ts"], - "@siafoundation/sia-nodejs": ["libs/sia-nodejs/src/index.ts"], "@siafoundation/units": ["libs/units/src/index.ts"] } },