This commit is contained in:
number571 2024-07-23 13:09:23 +07:00
parent c403c73782
commit de46fa01ac
39 changed files with 44888 additions and 44868 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ import (
"github.com/number571/go-peer/cmd/hidden_lake/adapters"
autils "github.com/number571/go-peer/cmd/hidden_lake/adapters/chatingar/internal/utils"
"github.com/number571/go-peer/pkg/cache"
"github.com/number571/go-peer/pkg/crypto/hashing"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/storage/cache"
"github.com/number571/go-peer/pkg/utils"
)

View File

@ -10,10 +10,10 @@ import (
"github.com/number571/go-peer/cmd/hidden_lake/adapters/chatingar/internal/consumer/internal/adapted"
hlt_client "github.com/number571/go-peer/cmd/hidden_lake/helpers/traffic/pkg/client"
"github.com/number571/go-peer/internal/logger/std"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/logger"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/state"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/types"
)

View File

@ -10,7 +10,7 @@ import (
"strconv"
"sync"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/storage/database"
)
const (

View File

@ -9,8 +9,8 @@ import (
"strconv"
"github.com/number571/go-peer/cmd/hidden_lake/adapters"
"github.com/number571/go-peer/pkg/database"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/utils"
)

View File

@ -11,10 +11,10 @@ import (
"github.com/number571/go-peer/cmd/hidden_lake/adapters/common/pkg/settings"
hlt_client "github.com/number571/go-peer/cmd/hidden_lake/helpers/traffic/pkg/client"
"github.com/number571/go-peer/internal/logger/std"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/state"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/types"
)

View File

@ -3,8 +3,8 @@ package database
import (
"sync"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/encoding"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/utils"
)

View File

@ -4,9 +4,9 @@ import (
"sync"
"github.com/number571/go-peer/pkg/crypto/hashing"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/encoding"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/utils"
)

View File

@ -1,9 +1,9 @@
package database
import (
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/crypto/hashing"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/utils"
)

View File

@ -14,7 +14,6 @@ import (
pkg_settings "github.com/number571/go-peer/cmd/hidden_lake/helpers/traffic/pkg/settings"
hls_settings "github.com/number571/go-peer/cmd/hidden_lake/service/pkg/settings"
"github.com/number571/go-peer/internal/closer"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
@ -23,6 +22,7 @@ import (
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/network/connkeeper"
net_message "github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/types"
testutils "github.com/number571/go-peer/test/utils"
)

View File

@ -3,9 +3,9 @@ package app
import (
"github.com/number571/go-peer/cmd/hidden_lake/helpers/traffic/internal/database"
"github.com/number571/go-peer/cmd/hidden_lake/helpers/traffic/internal/handler"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
hls_settings "github.com/number571/go-peer/cmd/hidden_lake/service/pkg/settings"
)

View File

@ -12,16 +12,16 @@ import (
"github.com/number571/go-peer/cmd/hidden_lake/service/internal/config"
pkg_settings "github.com/number571/go-peer/cmd/hidden_lake/service/pkg/settings"
"github.com/number571/go-peer/internal/closer"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/types"
testutils "github.com/number571/go-peer/test/utils"
)

View File

@ -5,15 +5,15 @@ import (
"time"
"github.com/number571/go-peer/cmd/hidden_lake/service/internal/handler"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/encoding"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/utils"
hls_settings "github.com/number571/go-peer/cmd/hidden_lake/service/pkg/settings"

View File

@ -9,13 +9,13 @@ import (
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/crypto/random"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/state"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/utils"
anon_logger "github.com/number571/go-peer/pkg/network/anonymity/logger"

View File

@ -11,16 +11,16 @@ import (
"testing"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/crypto/random"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/storage/database"
testutils "github.com/number571/go-peer/test/utils"
anon_logger "github.com/number571/go-peer/pkg/network/anonymity/logger"

View File

@ -5,17 +5,17 @@ import (
"os"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity"
anon_logger "github.com/number571/go-peer/pkg/network/anonymity/logger"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/storage/database"
)
const (

View File

@ -5,17 +5,17 @@ import (
"os"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/client"
"github.com/number571/go-peer/pkg/client/message"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity"
anon_logger "github.com/number571/go-peer/pkg/network/anonymity/logger"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
"github.com/number571/go-peer/pkg/storage/database"
)
const (

View File

@ -5,11 +5,11 @@ import (
"time"
"github.com/number571/go-peer/pkg/crypto/asymmetric"
"github.com/number571/go-peer/pkg/database"
"github.com/number571/go-peer/pkg/logger"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/anonymity/queue"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/database"
"github.com/number571/go-peer/pkg/types"
)

View File

@ -8,9 +8,9 @@ import (
"testing"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache/lru"
testutils "github.com/number571/go-peer/test/utils"
)

View File

@ -7,11 +7,11 @@ import (
"net"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/cache/lru"
)
const (

View File

@ -7,11 +7,11 @@ import (
"net"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/cache/lru"
)
const (

View File

@ -8,11 +8,11 @@ import (
"strconv"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/cache/lru"
)
const (

View File

@ -6,8 +6,8 @@ import (
"sync"
"time"
"github.com/number571/go-peer/pkg/cache"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/storage/cache"
"github.com/number571/go-peer/pkg/utils"
net_message "github.com/number571/go-peer/pkg/network/message"

View File

@ -10,10 +10,10 @@ import (
"testing"
"time"
"github.com/number571/go-peer/pkg/cache/lru"
"github.com/number571/go-peer/pkg/network/conn"
"github.com/number571/go-peer/pkg/network/message"
"github.com/number571/go-peer/pkg/payload"
"github.com/number571/go-peer/pkg/storage/cache/lru"
testutils "github.com/number571/go-peer/test/utils"
)

View File

@ -1,6 +1,6 @@
package lru
import "github.com/number571/go-peer/pkg/cache"
import "github.com/number571/go-peer/pkg/storage/cache"
type ILRUCache interface {
cache.ICache

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20" role="img" aria-label="code lines: 42899"><title>code lines: 42899</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="57" height="20" fill="#555"/><rect x="57" width="40" height="20" fill="#4682b4"/><rect width="96" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="295" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">code lines</text><text x="295" y="140" transform="scale(.1)" fill="#fff" textLength="510">code lines</text><text aria-hidden="true" x="770" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="320">42899</text><text x="770" y="140" transform="scale(.1)" fill="#fff" textLength="320">42899</text></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="96" height="20" role="img" aria-label="code lines: 42447"><title>code lines: 42447</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="96" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="57" height="20" fill="#555"/><rect x="57" width="40" height="20" fill="#4682b4"/><rect width="96" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="295" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="510">code lines</text><text x="295" y="140" transform="scale(.1)" fill="#fff" textLength="510">code lines</text><text aria-hidden="true" x="770" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="320">42447</text><text x="770" y="140" transform="scale(.1)" fill="#fff" textLength="320">42447</text></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@
>
<g>
<rect x="20.000000" y="20.000000" width="988.000000" height="600.000000" style="fill: rgb(2, 111, 59);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="20.000000" y="20.000000" width="988.000000" height="600.000000" style="fill: rgb(2, 111, 58);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
@ -33,7 +33,7 @@
<g>
<rect x="28.000000" y="41.600000" width="832.419790" height="570.400000" style="fill: rgb(3, 113, 59);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="28.000000" y="41.600000" width="832.419790" height="570.400000" style="fill: rgb(2, 112, 59);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
@ -155,20 +155,7 @@
<g>
<rect x="779.068917" y="426.252308" width="73.350873" height="113.538613" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(787.068917,441.852308) scale(0.373378)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">cache/lru/lru.go</text>
</g>
<g>
<rect x="532.525555" y="280.307692" width="214.209316" height="137.944615" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="532.525555" y="280.307692" width="177.429843" height="166.892308" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
@ -194,25 +181,12 @@
<g>
<rect x="532.525555" y="426.252308" width="147.430384" height="88.690580" style="fill: rgb(32, 154, 81);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="719.173043" y="455.200000" width="133.246747" height="70.400000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(540.525555,441.852308) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(0, 0, 0); fill-opacity: 1.00; white-space: pre;"
data-math="N">database</text>
</g>
<g>
<rect x="687.955939" y="426.252308" width="83.112978" height="113.538613" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(695.955939,441.852308) scale(0.873867)"
transform="translate(727.173043,470.800000) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">encoding</text>
@ -220,12 +194,12 @@
<g>
<rect x="532.525555" y="522.942887" width="147.430384" height="81.057113" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="630.893826" y="455.200000" width="80.279217" height="148.800000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(540.525555,538.542887) scale(1.000000)"
transform="translate(638.893826,470.800000) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">logger</text>
@ -233,7 +207,7 @@
<g>
<rect x="36.000000" y="63.200000" width="488.525555" height="540.800000" style="fill: rgb(3, 113, 60);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="36.000000" y="63.200000" width="488.525555" height="540.800000" style="fill: rgb(3, 112, 59);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
@ -246,12 +220,12 @@
<g>
<rect x="754.734871" y="280.307692" width="97.684919" height="137.944615" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="532.525555" y="455.200000" width="90.368270" height="148.800000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(762.734871,295.907692) scale(1.000000)"
transform="translate(540.525555,470.800000) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">payload</text>
@ -259,12 +233,12 @@
<g>
<rect x="687.955939" y="547.790921" width="115.188465" height="56.209079" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="719.173043" y="533.600000" width="92.890534" height="70.400000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(695.955939,563.390921) scale(1.000000)"
transform="translate(727.173043,549.200000) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">state</text>
@ -272,12 +246,25 @@
<g>
<rect x="811.144404" y="547.790921" width="41.275386" height="56.209079" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="717.955398" y="280.307692" width="134.464392" height="166.892308" style="fill: rgb(15, 134, 71);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(819.144404,563.390921) scale(0.125374)"
transform="translate(725.955398,295.907692) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">storage</text>
</g>
<g>
<rect x="820.063577" y="533.600000" width="32.356214" height="70.400000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(828.063577,549.200000) scale(0.081132)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">utils/merge_errors.go</text>
@ -369,12 +356,12 @@
<g>
<rect x="540.525555" y="301.907692" width="122.766883" height="108.344615" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="540.525555" y="301.907692" width="99.443315" height="137.292308" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(548.525555,317.507692) scale(1.000000)"
transform="translate(548.525555,317.507692) scale(0.965779)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">client.go</text>
@ -382,12 +369,12 @@
<g>
<rect x="671.292439" y="301.907692" width="67.442433" height="104.466462" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="647.968871" y="301.907692" width="53.986528" height="132.449231" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(679.292439,317.507692) scale(0.765512)"
transform="translate(655.968871,317.507692) scale(0.565276)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">message</text>
@ -460,25 +447,12 @@
<g>
<rect x="540.525555" y="447.852308" width="127.761163" height="59.090580" style="fill: rgb(35, 155, 81);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="727.173043" y="476.800000" width="45.677177" height="40.800000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(548.525555,463.452308) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(0, 0, 0); fill-opacity: 1.00; white-space: pre;"
data-math="N">database.go</text>
</g>
<g>
<rect x="695.955939" y="447.852308" width="67.112978" height="31.402263" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(703.955939,463.452308) scale(0.665534)"
transform="translate(735.173043,492.400000) scale(0.386422)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">bytes.go</text>
@ -486,30 +460,30 @@
<g>
<rect x="742.901550" y="531.034863" width="20.167367" height="0.756058" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="825.581201" y="517.466667" width="18.838589" height="0.133333" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
<g>
<rect x="695.955939" y="487.254571" width="38.945611" height="18.268175" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="780.850220" y="476.800000" width="36.730981" height="16.400000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
<g>
<rect x="695.955939" y="513.522746" width="38.945611" height="18.268175" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="780.850220" y="501.200000" width="36.730981" height="16.400000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
<g>
<rect x="742.901550" y="487.254571" width="20.167367" height="35.780292" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="825.581201" y="476.800000" width="18.838589" height="32.666667" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(750.901550,502.854571) scale(0.025535)"
transform="translate(833.581201,492.400000) scale(0.017393)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">serialize_yaml.go</text>
@ -517,12 +491,12 @@
<g>
<rect x="540.525555" y="544.542887" width="111.511758" height="51.457113" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="638.893826" y="476.800000" width="64.279217" height="101.028571" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(548.525555,560.142887) scale(1.000000)"
transform="translate(646.893826,492.400000) scale(0.558787)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">logger.go</text>
@ -530,7 +504,7 @@
<g>
<rect x="660.037313" y="544.542887" width="11.918626" height="51.457113" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="638.893826" y="585.828571" width="64.279217" height="10.171429" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
@ -594,7 +568,7 @@
<g>
<rect x="44.000000" y="337.994775" width="193.466805" height="258.005225" style="fill: rgb(12, 130, 68);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="44.000000" y="337.994775" width="193.466805" height="258.005225" style="fill: rgb(8, 123, 65);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
@ -620,12 +594,12 @@
<g>
<rect x="762.734871" y="301.907692" width="81.684919" height="48.680710" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="540.525555" y="476.800000" width="74.368270" height="53.969231" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(770.734871,317.507692) scale(1.000000)"
transform="translate(548.525555,492.400000) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">joiner</text>
@ -633,12 +607,12 @@
<g>
<rect x="762.734871" y="358.588402" width="36.842459" height="51.663905" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="540.525555" y="538.769231" width="33.184135" height="57.230769" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(770.734871,374.188402) scale(0.180924)"
transform="translate(548.525555,554.369231) scale(0.149168)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">payload32.go</text>
@ -646,12 +620,12 @@
<g>
<rect x="807.577331" y="358.588402" width="36.842459" height="51.663905" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="581.709691" y="538.769231" width="33.184135" height="57.230769" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(815.577331,374.188402) scale(0.180924)"
transform="translate(589.709691,554.369231) scale(0.149168)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">payload64.go</text>
@ -659,8 +633,41 @@
<g>
<rect x="695.955939" y="569.390921" width="93.829042" height="26.609079" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="727.173043" y="555.200000" width="72.646007" height="40.800000" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(735.173043,570.800000) scale(0.737578)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">state.go</text>
</g>
<g>
<rect x="725.955398" y="389.544322" width="118.464392" height="49.655678" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(733.955398,405.144322) scale(0.667086)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">cache/lru/lru.go</text>
</g>
<g>
<rect x="725.955398" y="301.907692" width="118.464392" height="79.636630" style="fill: rgb(32, 154, 81);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(733.955398,317.507692) scale(1.000000)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(0, 0, 0); fill-opacity: 1.00; white-space: pre;"
data-math="N">database</text>
</g>
@ -701,12 +708,12 @@
<g>
<rect x="679.292439" y="323.507692" width="51.442433" height="49.149284" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="655.968871" y="323.507692" width="37.986528" height="68.447745" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(687.292439,339.107692) scale(0.369192)"
transform="translate(663.968871,339.107692) scale(0.229026)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(255, 255, 255); fill-opacity: 1.00; white-space: pre;"
data-math="N">message.go</text>
@ -714,7 +721,7 @@
<g>
<rect x="679.292439" y="380.656976" width="44.837718" height="17.717178" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="655.968871" y="399.955438" width="32.876914" height="26.401485" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
@ -924,11 +931,24 @@
<g>
<rect x="770.734871" y="323.507692" width="61.806765" height="19.080710" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<rect x="548.525555" y="498.400000" width="54.875204" height="24.369231" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
</g>
<g>
<rect x="733.955398" y="323.507692" width="99.557434" height="50.036630" style="fill: rgb(35, 155, 81);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />
<text
data-notex="1"
text-anchor="start"
transform="translate(741.955398,339.107692) scale(0.791264)"
style="font-family: Open Sans, verdana, arial, sans-serif !important; font-size: 12px; fill: rgb(0, 0, 0); fill-opacity: 1.00; white-space: pre;"
data-math="N">database.go</text>
</g>
<g>
<rect x="458.164762" y="128.000000" width="42.360794" height="46.798258" style="fill: rgb(0, 104, 55);opacity:1;fill-opacity:1.00;stroke:rgb(128,128,128);stroke-width:1px;stroke-opacity:1.00;" />

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 37 KiB